Introducción al manejo de datos geográficos

Clase 2

Parte 3. Estrategias de visualización espacial

Mapeando resultados...

Un recorrido por varias librerías

In [1]:
import pandas as pd
import numpy as np
import geopandas as gpd
from shapely.geometry import Point
import pyproj
In [2]:
fachadas_sndg = pd.read_csv('../data/fachadas_sndg.csv')
In [3]:
fachadas_sndg.head(2)
Out[3]:
seccion manzana parcela partida calle_nombre calle_altura vencimiento_certificado direccion nomenclatura id nombre lat lon iddto nombredto
0 21 2 9 429255.0 ALVAREZ, JULIAN 2531 2019-03-12 ALVAREZ, JULIAN 2531 JULIAN ALVAREZ 2531, Comuna 14, Ciudad Autónom... 02000010 Ciudad Autónoma de Buenos Aires -34.586199585983984 -58.41378826532734 02098 Comuna 14
1 79 89 22 260164.0 LAMARCA, EMILIO 1014 2019-03-30 LAMARCA, EMILIO 1014 EMILIO LAMARCA 1014, Comuna 11, Ciudad Autónom... 02000010 Ciudad Autónoma de Buenos Aires -34.62221828824001 -58.4827026063354 02077 Comuna 11
In [4]:
fachadas_usig = pd.read_csv('../data/fachadas_usig.csv')
In [5]:
fachadas_usig.head(2)
Out[5]:
seccion manzana parcela partida calle_nombre calle_altura vencimiento_certificado direccion lat lon epsg
0 21 2 9 429255.0 ALVAREZ, JULIAN 2531 2019-03-12 ALVAREZ, JULIAN 2531 -34.586111 -58.413591 4326
1 79 89 22 260164.0 LAMARCA, EMILIO 1014 2019-03-30 LAMARCA, EMILIO 1014 -34.622146 -58.482847 4326
In [6]:
def construye_coords(x,y):
    try:
        geometria = Point(float(x), float(y)) 
        return geometria
    except:
        return 'sin coordenadas'
In [7]:
def construye_gdf(df,proj):
    
    geom = df.apply(lambda x: construye_coords(x.lon, x.lat), axis=1)
    df['geometry'] = geom
    localizables = df.loc[df['geometry']!='sin coordenadas']
    
    if type(proj) == str:
        crs = pyproj.CRS.from_user_input(proj)
        
    else:
        crs = pyproj.CRS(proj)
    
    gdf = gpd.GeoDataFrame(localizables, crs=crs, geometry=localizables.geometry)
    print('Devolviendo geodataframe con {} casos perdidos'.format(len(df)-len(gdf)))
    return gdf
In [8]:
wkt = """PROJCS["GKBA",
        GEOGCS["International 1909 (Hayford)",
            DATUM["CAI",
                SPHEROID["intl",6378388,297]],
            PRIMEM["Greenwich",0],
            UNIT["degree",0.0174532925199433]],
        PROJECTION["Transverse_Mercator"],
        PARAMETER["latitude_of_origin",-34.6297166],
        PARAMETER["central_meridian",-58.4627],
        PARAMETER["scale_factor",0.999998],
        PARAMETER["false_easting",100000],
        PARAMETER["false_northing",100000],
        UNIT["Meter",1]]"""
In [9]:
gdf_usig = construye_gdf(fachadas_usig,wkt)
Devolviendo geodataframe con 1192 casos perdidos
In [10]:
gdf_sndg = construye_gdf(fachadas_sndg,wkt)
Devolviendo geodataframe con 2369 casos perdidos

Ahora que finalmente tenemos nuestros geodataframes de puntos listos veamos si las dos herramientas nos devuelven los mismos resultados. Para eso, repasemos algunos conceptos básicos de visualzación. Cuando trabajamos con algunas librerías como matplotlib, es necesario tanto la figura donde se van a plotear nuestros gráficos como el lugar que va a ocupar. En líneas generales, lo que nos debe quedar en claro es que la instancia que nosotros creemos para la figura será siempre el método figure del módulo pyplot de matplotlib. Esto nos permitirá definir atributos como el tamaño. Para la posición de la figura, se utiliza el método add_subplot (aplicable siempre a un objeto de tipo pyplot. Así, se define la forma en la que se disponen las figuras. En nuestro caso, si queremos que el primer mapa se disponga al lado del segundo o, si por ejemplo, queremos superponerlos.

In [11]:
import matplotlib.pyplot as plt
%matplotlib inline
In [12]:
# creamos la figura con un tamaño específico
fig = plt.figure(figsize=(15,5))

# disponemos dos ejes en una columna. El tercero que pasamos como parametro es el número de eje
ax1 = fig.add_subplot(1,2,1)
# acá vemos el eje #2
ax2 = fig.add_subplot(1,2,2)
In [13]:
fig = plt.figure(figsize=(15,5))
ax1 = fig.add_subplot(1,2,1)
ax2 = fig.add_subplot(1,2,2)

gdf_usig.plot(ax=ax1, color='red')
gdf_sndg.plot(ax=ax2, color='blue')

ax1.set_axis_off()
ax1.set_title('Resultados Normalizador USIG')
ax2.set_axis_off()
ax2.set_title('Resultados Normalizador SNDG');
In [14]:
# Si quisieramos verlos superpuestos
fig = plt.figure(figsize=(15,5))
ax = fig.add_subplot(1,1,1)
gdf_usig.plot(ax=ax, color='red')
gdf_sndg.plot(ax=ax, color='blue')
ax.set_axis_off()
ax.set_title('Resultados USIG/SNDG');

Como se puede apreciar, los resultados son bastante similares. Con lo cual, a nivel performance ambos normalizadores trabajaron de manera muy parecida. Pero dónde es que caen esos puntos realmente? En los plots anteriores se puede ver con claridad la forma de la ciudad. De todos modos, es muy común cuando trabajamos con este tipo de situaciones en las que ploteamos algo cuyo resultado inicial nos resulta incierto, querer ver nuestros datos con una especificidad mayor. Hacer zoom, ver en qué polígono cae un punto, el nombre de una calle, etc. Para esto, existen varias librerías que permiten, de una manera muy ágil, plotear figuras sobre un layer dinámico (como si fuese un mapa web). A continuación daremos un pantallazo de algunas de ellas...

1. Leaflet

In [15]:
# importamos la librería
import mplleaflet
In [16]:
# Instanciamos el plot
ax = gdf_usig.head(1000).plot(markersize = 50, color = "red")

# Lo visualiamos con el método display
mplleaflet.display(fig=ax.figure)
/home/federico/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/IPython/core/display.py:701: UserWarning: Consider using IPython.display.IFrame instead
  warnings.warn("Consider using IPython.display.IFrame instead")
Out[16]:

Si prestamos atención al warning, se nos sugiere utilizar display de Ipython. Para ello, vamos a tener que, primero, exportar nuestro mapa y traer la ruta a ese ħtml que exportamos. Con leaflet también podemos hacer esto.

In [17]:
# Ploteamos la data,
gdf_usig.head(1000).plot(markersize = 50, color = "red");
# la exportamos
mplleaflet.show()
In [18]:
# y la llamamos nuevamente. IFrame nos permite regular el alto y el ancho del output
path = '_map.html'
from IPython.display import IFrame    
IFrame(path, width=1000, height=400)
Out[18]:

2. Contextily

Otra es Contextily, una librería muy útil para plotear puntos, polígonos o líneas sobre un layer estático que nos de un primer pantallazo del mapa que buscamos construir.

In [19]:
# importamos la librería
import contextily as ctx
In [20]:
puntos = gdf_usig.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12, crs=4326)
puntos.set_axis_off()

Recuerdan que en la clase anterior, vimos que en la nueva release de Geopandas el sistema de proyección de coordenadas (o CRS) había incorporado una mejora en su manera de definirlo? Y recordemos también que, el motivo de este cambio se apoya en la idea de sustitur un proj4string (o simplemente un string con información sobre el sistema de proyección utilizado) por un nuevo objeto enriquecido que nos permite acceder a distintos tipos de atributos y métodos. Por ejemplo:

In [21]:
# esta es la información de nuestro crs
gdf_usig.crs
Out[21]:
<Projected CRS: PROJCS["GKBA",
        GEOGCS["International 1909  ...>
Name: GKBA
Axis Info [cartesian]:
- E[east]: Easting (Meter)
- N[north]: Northing (Meter)
Area of Use:
- undefined
Coordinate Operation:
- name: unnamed
- method: Transverse Mercator
Datum: CAI
- Ellipsoid: intl
- Prime Meridian: Greenwich
In [22]:
# con la que podemos acceder, por ejemplo al nombre
gdf_usig.crs.name
Out[22]:
'GKBA'
In [23]:
# o al datum
gdf_usig.crs.datum
Out[23]:
DATUM["CAI",
    ELLIPSOID["intl",6378388,297,
        LENGTHUNIT["metre",1,
            ID["EPSG",9001]]]]

Sin embargo, esta nueva forma de definir el objeto CRS puede tener un impacto importante en el uso de distintas librerías. Y seguramente llevará un tiempo hasta que esto termine siendo totalmente compatible o todas se adapten al uso de este nuevo objecto. El principal causal de esto que existen muchas fuentes y formas de definir un CRS, algunas de las cuales pueden tener una descripción que no se ajusta completamente a los nuevos estándares de PROJ> 6 (cadenas de proj4, formatos WKT más antiguos, etc.). Como se menciona en la documentación oficial de geopandas sobre el uso de proyecciones, en estos casos, el objeto pyproj.CRS que se obteiene, podría contener algunas incosistencias. Por ejemplo, un código EPSG que no se condice con la localización esperada.En el blog de Joris Van der Boschee se brindan algunas explicaciones adicionales bastante interesantes.

Pero por qué mencionamos esto ahora? Si prestan atención, en la primera instancia del mapa que construimos con Contextily el crs que definimos fue el clásico 4326. ¿Por qué hicimos esto si nosotros construimos el gdf a partir de un wkt? Veamos qué hubiese pasado si definíamos el CRS de otra manera.

In [24]:
# Por ejemplo, si hubiésemos querido asignar el crs de otro dataframe cuyo epsg nos es familiar
barrios = gpd.read_file('../carto/barrios_badata.shp')
barrios.crs.datum
Out[24]:
DATUM["Campo Inchauspe",
    ELLIPSOID["International 1924",6378388,297,
        LENGTHUNIT["metre",1]],
    ID["EPSG",6221]]
In [25]:
# Primero vemos que nos devuelve un error relativo al crs que definimos desde el wkt
puntos = gdf_usig.to_crs(barrios.crs).plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12, crs=barrios.crs)
---------------------------------------------------------------------------
CRSError                                  Traceback (most recent call last)
<ipython-input-25-fa91bbe6fc9b> in <module>
      1 # Primero vemos que nos devuelve un error relativo al crs que definimos desde el wkt
      2 puntos = gdf_usig.to_crs(barrios.crs).plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
----> 3 ctx.add_basemap(puntos,zoom=12, crs=barrios.crs)

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in add_basemap(ax, zoom, source, interpolation, attribution, attribution_size, reset_extent, crs, resampling, url, **extra_imshow_args)
    138         if crs is not None:
    139             left, right, bottom, top = _reproj_bb(
--> 140                 left, right, bottom, top, crs, {"init": "epsg:3857"}
    141             )
    142         # Download image

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in _reproj_bb(left, right, bottom, top, s_crs, t_crs)
    220 
    221 def _reproj_bb(left, right, bottom, top, s_crs, t_crs):
--> 222     n_l, n_b, n_r, n_t = transform_bounds(s_crs, t_crs, left, bottom, right, top)
    223     return n_l, n_r, n_b, n_t
    224 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform_bounds(src_crs, dst_crs, left, bottom, right, top, densify_pts)
    167         in_ys = [bottom, top, bottom, top]
    168 
--> 169     xs, ys = transform(src_crs, dst_crs, in_xs, in_ys)
    170     return (min(xs), min(ys), max(xs), max(ys))
    171 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/env.py in wrapper(*args, **kwds)
    384         else:
    385             with Env.from_defaults():
--> 386                 return f(*args, **kwds)
    387     return wrapper
    388 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform(src_crs, dst_crs, xs, ys, zs)
     52     """
     53 
---> 54     return _transform(src_crs, dst_crs, xs, ys, zs)
     55 
     56 

rasterio/_base.pyx in rasterio._base._transform()

rasterio/_base.pyx in rasterio._base._osr_from_crs()

CRSError: Invalid CRS: CRS.from_wkt('PROJCRS["Argentina_GKBsAs",BASEGEOGCRS["Campo Inchauspe",DATUM["Campo Inchauspe",ELLIPSOID["International 1924",6378388,297,LENGTHUNIT["metre",1]],ID["EPSG",6221]],PRIMEM["Greenwich",0,ANGLEUNIT["Degree",0.0174532925199433]]],CONVERSION["unnamed",METHOD["Transverse Mercator",ID["EPSG",9807]],PARAMETER["Latitude of natural origin",-34.6297166,ANGLEUNIT["Degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-58.4627,ANGLEUNIT["Degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["Scale factor at natural origin",0.999998,SCALEUNIT["unity",1],ID["EPSG",8805]],PARAMETER["False easting",100000,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",100000,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS["Cartesian",2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]')
In [26]:
# Creamos nuestro gdf pero ahora no intentando reproyectar sino asigando el CRS deseado directamente
gdf_usig_crs_barrios = construye_gdf(fachadas_usig,barrios.crs)
Devolviendo geodataframe con 1192 casos perdidos
In [27]:
# Y volvemos a intentar la operación
puntos = gdf_usig_crs_barrios.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12, crs=gdf_usig_crs_barrios.crs)
---------------------------------------------------------------------------
CRSError                                  Traceback (most recent call last)
<ipython-input-27-4f2cc397db61> in <module>
      1 # Y volvemos a intentar la operación
      2 puntos = gdf_usig_crs_barrios.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
----> 3 ctx.add_basemap(puntos,zoom=12, crs=gdf_usig_crs_barrios.crs)

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in add_basemap(ax, zoom, source, interpolation, attribution, attribution_size, reset_extent, crs, resampling, url, **extra_imshow_args)
    138         if crs is not None:
    139             left, right, bottom, top = _reproj_bb(
--> 140                 left, right, bottom, top, crs, {"init": "epsg:3857"}
    141             )
    142         # Download image

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in _reproj_bb(left, right, bottom, top, s_crs, t_crs)
    220 
    221 def _reproj_bb(left, right, bottom, top, s_crs, t_crs):
--> 222     n_l, n_b, n_r, n_t = transform_bounds(s_crs, t_crs, left, bottom, right, top)
    223     return n_l, n_r, n_b, n_t
    224 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform_bounds(src_crs, dst_crs, left, bottom, right, top, densify_pts)
    167         in_ys = [bottom, top, bottom, top]
    168 
--> 169     xs, ys = transform(src_crs, dst_crs, in_xs, in_ys)
    170     return (min(xs), min(ys), max(xs), max(ys))
    171 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/env.py in wrapper(*args, **kwds)
    384         else:
    385             with Env.from_defaults():
--> 386                 return f(*args, **kwds)
    387     return wrapper
    388 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform(src_crs, dst_crs, xs, ys, zs)
     52     """
     53 
---> 54     return _transform(src_crs, dst_crs, xs, ys, zs)
     55 
     56 

rasterio/_base.pyx in rasterio._base._transform()

rasterio/_base.pyx in rasterio._base._osr_from_crs()

CRSError: Invalid CRS: CRS.from_wkt('PROJCRS["Argentina_GKBsAs",BASEGEOGCRS["Campo Inchauspe",DATUM["Campo Inchauspe",ELLIPSOID["International 1924",6378388,297,LENGTHUNIT["metre",1]],ID["EPSG",6221]],PRIMEM["Greenwich",0,ANGLEUNIT["Degree",0.0174532925199433]]],CONVERSION["unnamed",METHOD["Transverse Mercator",ID["EPSG",9807]],PARAMETER["Latitude of natural origin",-34.6297166,ANGLEUNIT["Degree",0.0174532925199433],ID["EPSG",8801]],PARAMETER["Longitude of natural origin",-58.4627,ANGLEUNIT["Degree",0.0174532925199433],ID["EPSG",8802]],PARAMETER["Scale factor at natural origin",0.999998,SCALEUNIT["unity",1],ID["EPSG",8805]],PARAMETER["False easting",100000,LENGTHUNIT["metre",1],ID["EPSG",8806]],PARAMETER["False northing",100000,LENGTHUNIT["metre",1],ID["EPSG",8807]]],CS["Cartesian",2],AXIS["(E)",east,ORDER[1],LENGTHUNIT["metre",1,ID["EPSG",9001]]],AXIS["(N)",north,ORDER[2],LENGTHUNIT["metre",1,ID["EPSG",9001]]]]')

Contextily sigue sin reconocer nuestro sistema de coordenadas. Intentemos un camino diferente...

In [28]:
# Veamos en la descripción de nuestro objeto CRS cual es el código EPSG asignado
gdf_usig_crs_barrios.crs.datum
Out[28]:
DATUM["Campo Inchauspe",
    ELLIPSOID["International 1924",6378388,297,
        LENGTHUNIT["metre",1]],
    ID["EPSG",6221]]
In [29]:
# Y intentemos nuevamente...
puntos = gdf_usig_crs_barrios.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12, crs=6221)
---------------------------------------------------------------------------
CPLE_NotSupportedError                    Traceback (most recent call last)
rasterio/_crs.pyx in rasterio._crs._CRS.from_epsg()

rasterio/_err.pyx in rasterio._err.exc_wrap_int()

CPLE_NotSupportedError: EPSG PCS/GCS code 6221 not found in EPSG support files.  Is this a valid EPSG coordinate system?

During handling of the above exception, another exception occurred:

CRSError                                  Traceback (most recent call last)
<ipython-input-29-20e3ff3a6fbe> in <module>
      1 # Y intentemos nuevamente...
      2 puntos = gdf_usig_crs_barrios.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
----> 3 ctx.add_basemap(puntos,zoom=12, crs=6221)

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in add_basemap(ax, zoom, source, interpolation, attribution, attribution_size, reset_extent, crs, resampling, url, **extra_imshow_args)
    138         if crs is not None:
    139             left, right, bottom, top = _reproj_bb(
--> 140                 left, right, bottom, top, crs, {"init": "epsg:3857"}
    141             )
    142         # Download image

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/contextily/plotting.py in _reproj_bb(left, right, bottom, top, s_crs, t_crs)
    220 
    221 def _reproj_bb(left, right, bottom, top, s_crs, t_crs):
--> 222     n_l, n_b, n_r, n_t = transform_bounds(s_crs, t_crs, left, bottom, right, top)
    223     return n_l, n_r, n_b, n_t
    224 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform_bounds(src_crs, dst_crs, left, bottom, right, top, densify_pts)
    167         in_ys = [bottom, top, bottom, top]
    168 
--> 169     xs, ys = transform(src_crs, dst_crs, in_xs, in_ys)
    170     return (min(xs), min(ys), max(xs), max(ys))
    171 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/env.py in wrapper(*args, **kwds)
    384         else:
    385             with Env.from_defaults():
--> 386                 return f(*args, **kwds)
    387     return wrapper
    388 

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/warp.py in transform(src_crs, dst_crs, xs, ys, zs)
     52     """
     53 
---> 54     return _transform(src_crs, dst_crs, xs, ys, zs)
     55 
     56 

rasterio/_base.pyx in rasterio._base._transform()

rasterio/_base.pyx in rasterio._base._osr_from_crs()

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/crs.py in from_user_input(cls, value, morph_from_esri_dialect)
    452             )
    453         elif isinstance(value, int):
--> 454             return cls.from_epsg(value)
    455         elif isinstance(value, dict):
    456             return cls(**value)

~/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/rasterio/crs.py in from_epsg(cls, code)
    319         """
    320         obj = cls()
--> 321         obj._crs = _CRS.from_epsg(code)
    322         return obj
    323 

rasterio/_crs.pyx in rasterio._crs._CRS.from_epsg()

CRSError: The EPSG code is unknown. EPSG PCS/GCS code 6221 not found in EPSG support files.  Is this a valid EPSG coordinate system?

Pueden intentarlo tanto con este código como con el que vimos inicialmente en la descripción de nuestro primer CRS (9001). Ambos devolverán un mensaje de error de CRS no soportado. Esto, porque Contextily no está reconociendo la definición de ninguno de los dos (el que heredamos de nuestro shape de barrios o el especificado en el wkt).

Y qué hubiese pasado si apelábamos al EPSG oficial que corresponde a la faja donde cae la Ciudad de Buenos Aires? Pruébenlo y cuéntennos cómo les va!

De manera diferente, esto no nos hubiese pasado, por ejemplo, con leaflet. Como dijimos antes, el impacto que tiene este nuevo objeto no es siempre el mismo. Veamoslo:

In [30]:
# Instanciamos el plot con nuestro nuevo gdf
ax = gdf_usig_crs_barrios.head(1000).plot(markersize = 50, color = "red")

# Y lo visualiamos con el método display
mplleaflet.display(fig=ax.figure)
/home/federico/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/IPython/core/display.py:701: UserWarning: Consider using IPython.display.IFrame instead
  warnings.warn("Consider using IPython.display.IFrame instead")
Out[30]:
In [31]:
# Creamos el gdf con el EPSG que vinos inicialmente en datum
gdf_usig_9001 = construye_gdf(fachadas_usig,9001)

# Y repetimos la operatioria
ax = gdf_usig_9001.head(1000).plot(markersize = 50, color = "red")

mplleaflet.display(fig=ax.figure)
Devolviendo geodataframe con 1192 casos perdidos
/home/federico/CoDeAr/curso-python-data/Clase 7/venv/lib/python3.6/site-packages/IPython/core/display.py:701: UserWarning: Consider using IPython.display.IFrame instead
  warnings.warn("Consider using IPython.display.IFrame instead")
Out[31]:
In [32]:
# Este sería el resultado con Contextily si no se especificara el CRS
puntos = gdf_usig_crs_barrios.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12)

En este tipo de circunstancias, algo que es muy recomendable es trabajar directamente en 4326 (para asegurarnos que no tendremos ningún problema de incompatibilidad o falta de soporte). O bien, este nuevo objecto pyproj.CRS cuenta con un método to_epsg() para devolver un id equivalente. Este es bastante útil para identificar si nuestra proyección (en nuestro caso definida desde un wkt) está siendo identificada correctamente...

In [33]:
# En nuestro caso, vemos que el epsg es un None type, algo que ya nos debería parecer sospechoso
print(gdf_usig.crs.to_epsg())
None
In [34]:
# También podemos acceder a la descripción original si hacemos:
gdf_usig.crs.source_crs
Out[34]:
<Geographic 2D CRS: GEOGCRS["International 1909 (Hayford)",DATUM["CAI" ...>
Name: International 1909 (Hayford)
Axis Info [ellipsoidal]:
- lon[east]: Longitude (degree)
- lat[north]: Latitude (degree)
Area of Use:
- undefined
Datum: CAI
- Ellipsoid: intl
- Prime Meridian: Greenwich
In [35]:
# Y veamos también que ahora trabajamos con un nuevo parámetro: min_confidence
gdf_usig.crs.source_crs.to_epsg(min_confidence=20)
Out[35]:
4204

Esto se encuentra bastante bien explicado en la documentación de pyproj. Si el método to_epsg no nos devuelve ningún código EPSG que coincida con el wkt o el pyproj4 string que usamos inicialmente (porque no lo encuentra o porque no existe), podemos apelar al parámetro min_confidence. Este, nos permitiría obtener el código EPSG más cercano, alternando los umbrales que estamos dispuestos a tolerar.

In [36]:
# Vemos que ahora Contextily interpeta el crs...
puntos = gdf_usig.plot(figsize=(10, 10), alpha=0.5, color='red', edgecolor='k')
ctx.add_basemap(puntos,zoom=12, crs=gdf_usig.crs.source_crs.to_epsg(min_confidence=20))

En este caso, si bien el resultado es bastante similar al que obtuvimos con un EPSG igual a 4326, este método nos puede resultar de utilidad para situaciones en las que necesitemos trabajar con una proyección diferente asegurándonos que el mismo sea interpretable.

3. Folium

Folium es una librería que combina distintos tipos de funcionalidades. Desde controles de zoom y la posibilidad de alternar layers hasta clases que devuelven mapas de calor y coropletas.

In [37]:
# Si no lo incluiste en los requirements, lo podemos instalar directo desde el notebook
#!pip install folium
In [38]:
# Importamos la librería
import folium
In [39]:
# Creamos un nuevo gdf en 4326 para los resultados de ambos nomralizadores
sndg_4326 = construye_gdf(fachadas_sndg,4326)
Devolviendo geodataframe con 2369 casos perdidos
In [40]:
usig_4326 = construye_gdf(fachadas_usig,4326)
Devolviendo geodataframe con 1192 casos perdidos
In [41]:
# Convertimos nuestro gdf de puntos en geojson
sndg_gjson = folium.features.GeoJson(sndg_4326.head(1000), name="SNDG")

# Acá podemos ver la estructura
#points_gjson.data.get('features')

# Y ploteamos el mapa...
mapa = folium.Map(location=[-34.6157437, -58.4333812], 
               zoom_start=11, 
               control_scale=True)
sndg_gjson.add_to(mapa);
In [42]:
mapa
Out[42]:
In [43]:
def mapa_folium(gdf, polygons, barrio, exporta):
    '''
    Construye un mapa de puntos y/o polígonos sobre
    un layer dinámico de leaflet.
    ...
    Argumentos:
     gdf(GeoDataFrame): Geodataframe de puntos.
     barrio (str): nombre del barrio.
     polygons (GeoDataFrame): GeoDataFrame de polígonos.
     exporta (bool): True para exportar.
     
    Devuelve:
      folium.Map : mapa de puntos/polígonos  
    '''
    
    # Creamos el layer de leaflet. Lo centramos en la Ciudad de Buenos Aires
    centroide =  gdf.geometry.centroid
    coordenadas = [centroide.y.mean(), centroide.x.mean()]
    layer = folium.Map(location=coordenadas, 
                       zoom_start=11, 
                       height = 500,
                       control_scale=True)
    
    
    # Si pasamos polígonos de base, también los cargamos al mapa
    if polygons is not None:
        estilo = lambda x: {'fillColor': 'red' if
                            x['properties']['BARRIO']== barrio else
                            'grey'}
        
        pol_hover= folium.features.GeoJsonTooltip(
                        fields=['BARRIO','COMUNA'],
                        aliases=['Barrio:','Comuna:'])
        
        folium.GeoJson(polygons.to_crs(gdf.crs),
                       name = 'Barrios de la ciudad',
                       style_function = estilo,
                       tooltip = pol_hover
                       ).add_to(layer)

    
    # Agregamos nuestros puntos con el método CircleMarker
    for i, row in gdf.iterrows():
        folium.CircleMarker((row.lat,row.lon),            
                            radius=3, weight=2, 
                            color='blue', 
                            fill_color='blue', 
                            fill_opacity=.5,
                            tooltip= 'Certificado:'+row.vencimiento_certificado).add_to(layer)
    
    
    # Exportar el resultado
    if exporta:
        layer.save('mapa.html')
    
    folium.LayerControl(autoZIndex=False, collapsed=False).add_to(layer)
    
    return layer
In [44]:
# ploteamos un mapa sólo de puntos
mapa_folium(sndg_4326.head(50), None, None, False)
Out[44]:
In [45]:
# ahora lo combinamos con un gdf de polígonos
mapa_folium(sndg_4326.head(1000), barrios, 'VILLA LUGANO', False)
Out[45]:
In [46]:
fig = plt.figure(figsize=(15,5))
ax1 = fig.add_subplot(1,2,1)
ax2 = fig.add_subplot(1,2,2)

barrios.plot(ax=ax1, color='grey')
usig_4326.to_crs(barrios.crs).plot(ax=ax1, color='red', markersize=1)

barrios.plot(ax=ax2, color='grey')
sndg_4326.to_crs(barrios.crs).plot(ax=ax2, color='blue', markersize=1)


ax1.set_axis_off()
ax2.set_axis_off()

ax1.set_title('Resultados Normalizador USIG')
ax2.set_title('Resultados Normalizador SNDG');
In [47]:
fig = plt.figure(figsize=(15,5))
ax1 = fig.add_subplot(1,2,1)
ax2 = fig.add_subplot(1,2,2)

barrios.plot(ax=ax1, color='grey')
usig_4326.to_crs(barrios.crs).plot(ax=ax1, color='red', markersize=10, edgecolor='white')

barrios.plot(ax=ax2, color='grey')
sndg_4326.to_crs(barrios.crs).plot(ax=ax2, color='blue', markersize=10, edgecolor='white')


ax1.set_axis_off()
ax2.set_axis_off()

ax1.set_title('Resultados Normalizador USIG')
ax2.set_title('Resultados Normalizador SNDG');
In [48]:
from folium.plugins import HeatMap
In [49]:
def mapa_de_calor(gdf, radio, inicio, fin):
    '''
    Construye un mapa de calor sobre
    un layer dinámico de leaflet.
    ...
    Argumentos:
     gdf(GeoDataFrame): Geodataframe de puntos.
     radio (int): radio de cada punto.
     inicio (int): límite inferior.
     fin (int): límite superior.
     
    Devuelve:
      folium.Map : mapa de calor  
    '''
    
    # Ubicamos el centro del mapa
    centroide =  gdf.geometry.centroid
    coordenadas = [centroide.y.mean(), centroide.x.mean()]
    
    # Conseguimos la latitud y la longitud de cada punto con una función anónima
    x = gdf["geometry"].apply(lambda punto: punto.x)
    y = gdf["geometry"].apply(lambda punto: punto.y)

    # Convertimos esas coordenadas en una lista de tuplas
    puntos = list(zip(y, x))
    
    # Creamos el layer de leaflet
    layer = folium.Map(location=coordenadas, 
                       zoom_start=11, control_scale=True)

    # Agregamos el mapa de calor al layer que habíamos instanciado
    HeatMap(puntos[inicio:fin], 
            radius=radio).add_to(layer)

    return layer
In [50]:
# también se puede jugar con otros parametros como max_zoom o el tile para elegir otro base map
mapa_de_calor(usig_4326, 15, 1000, 2000)
Out[50]:

Para concluir con esta práctica, veamos qué se puede hacer con los datasets que hemos venido construyendo. Un aspecto muy importante en este tipo de situaciones en las que la construcción de nuestros set de datos se vuelve un proceso lento y demandante, es no olvidar o dejar de lado la pregunta que nos va a ayudar a responder. Y no por la pregunta en sí, ya que puede ser una o más. Sino porque, la comunicación de nuestros hallazgos se vuelve mucho más clara cuando respondemos algo en concreto. Por ejemplo, dónde se aglomera nuestra variable de interés? existe algún patrón de localización específico?

Con nuestro mapa de calor, ya pudimos identificar algunas posibles zonas. Sin embargo, vamos a aprovechar esta pregunta para introducir una nueva geometría, un tipo de polígono que no vimos hasta ahora. Este no es nada más y nada menos que el radio censal. Una división o unidad geográfica que utiliza el Instituto Nacional de Estadísticas y Censos (INDEC) para sus relevamientos censales.

Pero no vamos a ahondar mucho en este tema. Simplemente, mencionaremos que una de sus principales ventajas, es la posibilidad de contar con información sociodemográfica a un alto nivel de desagregación territorial (algo que se vuelve importante en términos de acceso a información útil para describir con detalle áreas más reducidas - o con mayor zoom). Tema que retomaremos en otro notebook.

A continuación, veremos un ejemplo en el que utilizaremos los radios solamente por el tamaño de los polígonos (también existen otras librerías muy útiles para lograr este tipo de efectos en nuestros outputs). Haremos un join espacial para ver la cantidad de puntos (nuestras fachadas registradas en las partidas de conservación patrimonial) que caen dentro de nuestros polígonos censales y evaluaremos la concentración de actividad (personas que hayan registrado una fachada) en base a la clasificación de este valor dentro de los radios.

Como vimos en la clase anterior, Geopandas cuenta con un módulo bastante útil que nos permite detectar la relación espacial entre dos geometrías. Este se denomina spatial join y nos permitira conocer cuántos puntos caen dentro del área de cada polígono.

In [51]:
# importamos el módulo desde gepandas
from geopandas import sjoin
In [52]:
# cargamos el shapefile de radios censales
radios = gpd.read_file('../carto/informacion_censal_por_radio_2010.shp')
In [53]:
# mergeamos ambos gdf
fachadas_r = gpd.sjoin(sndg_4326, radios.to_crs(sndg_4326.crs))
In [54]:
# visualizamos el reultado...
fachadas_r.plot();
In [55]:
# Agrupamos la cantidad de fachadas con certificado de conservación por radio censal
fachadas_por_radio = fachadas_r.groupby(['RADIO_I'])[['partida']].count().reset_index()
In [56]:
# Creamos un diccioanrio donde la key es el id del radio y el value la cantidad de partidas.
d = dict(zip(fachadas_por_radio['RADIO_I'], fachadas_por_radio['partida']))
In [57]:
# Agregamos esta nueva información como columna adicional de nuestro shape original de radios.
radios['partidas'] = radios['RADIO_I'].map(d)
In [58]:
# Hacemos una primera visualización de este resultado.
fig = plt.figure(figsize=(15,7))
ax1 = fig.add_subplot(1,2,1)
ax2 = fig.add_subplot(1,2,2)

radios.to_crs(wkt).plot(ax=ax1, column='partidas', scheme='Natural_Breaks', k=3, 
                        linewidth=0.2, edgecolor='black', cmap='Reds_r', legend=True)
radios.to_crs(wkt).plot(ax=ax2, column='partidas', scheme='Quantiles', k=3, 
                        linewidth=0.2, edgecolor='black', cmap='Blues_r', legend=True)

ax1.set_axis_off()
ax2.set_axis_off()

Vamos a introducir otro tema que retomaremos en el notebook siguiente: esquemas de clasificación. Acá simplemente vamos a comparar dos distintos para detectar si existe algún tipo de diferencia. Como no se pueden apreciar contrastes importantes sólo nos detendremos brevemente en la última distribución. Los quantiles.

In [59]:
# reemplazamos los casos sin valor por 0 (en nuestro join espacial muchos polígonos no coincidían con ningún punto)
radios['partidas'].fillna(0,inplace=True)
In [60]:
# calculamos nuestros bins de corte (quantiles). 
qcut = list(radios['partidas'].quantile([0, 0.25, 0.5, 0.75, 1]))
In [61]:
# Esto nos devuelve cinco intervalos, o quintiles que dividen a nuestra población en cinco partes iguales
pd.qcut(radios['partidas'], 5, labels=False).value_counts()
Out[61]:
0    820
1    735
2    685
3    657
4    657
Name: partidas, dtype: int64

Qué significa esto? Básicamente que el primer 20% de nuestros radios censales no tendrá fachadas o partidas dentro del área delimitada por los bordes del polígono. El segundo 20%, es decir entre el 20 y el 40% de los casos tendrá un máximo de 2 partidas. Del 40 al 60 será entre 2 y 5, del 60 al 80% entre 5 y 10 y el último quintil (o 20% de nuestros casos) trendrá entre 10 y 75 partidas. Es decir, el más disperso. Pero como dijimos, este tema lo retomaremos en nuestra próxima clase cuando revisemos algunas clases y métodos de la librería mapclassify.

In [62]:
# nuestros bins de corte
qcut
Out[62]:
[0.0, 2.0, 5.0, 10.0, 75.0]

Ahora, vamos a utilizar la clase Choropleth de Folium para plotear nuestro agrupamiento por radio. Presten atención a la lógica general. Esta no difiere de los otros mapas que hemos visto. Primero agregar el mapa con .Map()(para lo que dejamos seteado un camino que siempre nos devuelva el centro de nuestro gdf a partir de los ceontroides de las latitudes y longitudes). Y luego, ir creando los distintos objetos que iremos agregando como capas superpuestas.

In [63]:
# creamos el mapa
gdf = radios.copy()
centroide =  gdf.geometry.centroid
coordenadas = [centroide.y.mean(), centroide.x.mean()]
layer = folium.Map(location=coordenadas, 
                   zoom_start=11, 
                   height = 500,
                   control_scale=True)

# esto nos permitiría seleccionar entre distintos tiles de base
tiles = ['stamenwatercolor', 'cartodbpositron', 'openstreetmap', 'stamenterrain']
for tile in tiles:
    folium.TileLayer(tile).add_to(layer)

# instanciamos la coropleta
fachadas = folium.Choropleth(name='Radios censales',
                             geo_data=gdf,
                             data=gdf[[c for c in gdf.columns if c!='geometry']],
                             columns=['RADIO_I','partidas'],
                             key_on='properties.RADIO_I',
                             fill_color='Reds_r', 
                             bins = qcut,
                             fill_opacity=0.6, 
                             line_opacity=0.2,
                             highlight=True,
                             legend_name='Cantidad de partidas por radio censal (CNPHV-2010)',
                             smooth_factor=1).add_to(layer)

# creamos un tooltip para hacer un hover en nuestros polígonos
pol_hover = folium.features.GeoJsonTooltip(fields=['BARRIO','RADIO_I','partidas'],
                                           aliases=['Barrio:','Radio_id:','Partidas:'])

# Y lo agregamos al layer inicial
folium.GeoJson(gdf,
               style_function=lambda x: {"weight":0.35, 
                                         'color':'white', 
                                         'fillOpacity':0.0},
               smooth_factor=2.0,
               tooltip=pol_hover).add_to(fachadas);
In [64]:
layer
Out[64]:

Es importante remarcar que, en este ejemplo, hemos pasado un geodataframe a la clase Choropleth de folium. También podríamos haberle pasado directamente un objeto de tipo GeoJson, que es lo que la clase usa para mapear nuestros polígonos (buscar la key, aplicar estilos, etc.). De hecho, si se fijan en el parámetro key_on, se accede a la columna de radios a través de la key properties. Veamos cómo es eso:

In [65]:
import json
In [66]:
# cargamos un geojson de radios censales (es nuestro mismo gdf que previamente exportamos en este formato)
with open('../carto/radios.geojson') as f:
    rg = json.load(f)
In [67]:
# Vemos las keys...
rg.keys()
Out[67]:
dict_keys(['type', 'crs', 'features'])
In [68]:
# y adentro de features, nuestras columnas!
rg['features']
Out[68]:
[{'type': 'Feature',
  'properties': {'RADIO_I': '1_1_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 336.0,
   'VIVIEND': 82.0,
   'HOGARES': 65.0,
   'HOGARES_': 19.0,
   'AREA_KM': 1.79899704639142,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37189370787717, -34.591993639600794],
     [-58.372015858814414, -34.59195978628131],
     [-58.37202781656919, -34.59212961575722],
     [-58.37309466255606, -34.59161191372679],
     [-58.37315416690657, -34.591600603607475],
     [-58.37337843089338, -34.591578060366395],
     [-58.37355692754111, -34.59155926788873],
     [-58.373405194144084, -34.5913927039734],
     [-58.372955603847984, -34.59094294614221],
     [-58.373194808782884, -34.59080479480007],
     [-58.37290159700356, -34.590430207711314],
     [-58.37209327789693, -34.58943853927675],
     [-58.37665514459379, -34.58686588656612],
     [-58.37661854380791, -34.58668698477447],
     [-58.37654518760209, -34.58647946503614],
     [-58.37645756405943, -34.58630623787119],
     [-58.37645702536464, -34.58625910473146],
     [-58.37633137630464, -34.58613355780071],
     [-58.376036594545326, -34.58608591536869],
     [-58.374940664273254, -34.58475908821999],
     [-58.37505205469732, -34.584669479279576],
     [-58.37518335923529, -34.58463889043133],
     [-58.37584013587484, -34.58424047963593],
     [-58.376693919849345, -34.58373835384078],
     [-58.37611435602038, -34.58303643577401],
     [-58.376028417584806, -34.5829202424845],
     [-58.37590630643423, -34.582744084164894],
     [-58.375784191898504, -34.58257167191922],
     [-58.37533182861442, -34.582020657044495],
     [-58.375236849290395, -34.58188947189341],
     [-58.37453088226315, -34.580982548423066],
     [-58.3733757149224, -34.57954968179443],
     [-58.37337663794235, -34.57954765186444],
     [-58.37325456348662, -34.57939237439309],
     [-58.373707693172996, -34.57914717116536],
     [-58.367413358842015, -34.578657693220705],
     [-58.3673809218307, -34.578655625605954],
     [-58.36735401925257, -34.57865342145863],
     [-58.367332728207, -34.578658123212925],
     [-58.36731364515589, -34.57866782677189],
     [-58.367281950365495, -34.57868681639783],
     [-58.36483330629974, -34.58008764710292],
     [-58.36473771035778, -34.580142360038685],
     [-58.36471956308683, -34.58015220478753],
     [-58.364697231431855, -34.58017253930263],
     [-58.36464685199369, -34.58058546330192],
     [-58.36465508910496, -34.58060413219376],
     [-58.36467959909548, -34.580614081618826],
     [-58.364706417336485, -34.580616075016664],
     [-58.369967049000095, -34.58102991028312],
     [-58.369994122469635, -34.58103232525513],
     [-58.37001284265621, -34.581042903024404],
     [-58.370020734960754, -34.581066500949255],
     [-58.370001050649414, -34.58123409434748],
     [-58.369994215179354, -34.581255568376726],
     [-58.36997614983176, -34.58126865345696],
     [-58.36923465555445, -34.581692179228185],
     [-58.368431467467495, -34.58215149846739],
     [-58.368412894780576, -34.582161061739185],
     [-58.36839185093999, -34.582172313266305],
     [-58.368355234723985, -34.58217524276119],
     [-58.36833360949423, -34.58217353587504],
     [-58.36830236361864, -34.58217104688415],
     [-58.36827546004255, -34.582168702092076],
     [-58.364610256911625, -34.58187545469306],
     [-58.36207357421103, -34.58167472448877],
     [-58.36204360428498, -34.5816735729973],
     [-58.36201668584714, -34.58168383264934],
     [-58.35994909327588, -34.58285790285328],
     [-58.35992983438714, -34.582870633318244],
     [-58.35991363063773, -34.58289160592002],
     [-58.35991002689484, -34.582913997604784],
     [-58.35986980572367, -34.58328544845163],
     [-58.359875736026886, -34.58330982002847],
     [-58.35989427438969, -34.583329131723325],
     [-58.35991461247435, -34.583339008163385],
     [-58.3599424522025, -34.58334184855181],
     [-58.364607760204265, -34.583710622643096],
     [-58.365496536693584, -34.58378105314363],
     [-58.365519181595424, -34.583784874053535],
     [-58.36554351216407, -34.58380355568948],
     [-58.365546124621886, -34.583826867994354],
     [-58.365548492784654, -34.58398694281349],
     [-58.36554702338632, -34.584005744755466],
     [-58.36553584890708, -34.584022989651224],
     [-58.365517439456646, -34.584037975228625],
     [-58.365476359274204, -34.58407125289157],
     [-58.36494181465818, -34.58449393109789],
     [-58.3646068692088, -34.58475880731956],
     [-58.36439107570347, -34.584925608109316],
     [-58.36436346693276, -34.58494298050292],
     [-58.36433842888515, -34.584946551931225],
     [-58.36431348337109, -34.58494385572613],
     [-58.35992888815377, -34.58460770197036],
     [-58.35935402433853, -34.58455869466112],
     [-58.35931126376681, -34.58457154596872],
     [-58.3592993837084, -34.58460738152964],
     [-58.35911359923197, -34.586314785431426],
     [-58.359113055646624, -34.58634112339921],
     [-58.359121804210176, -34.58635880714974],
     [-58.35913643287857, -34.58637269301479],
     [-58.35915523995322, -34.58638172319435],
     [-58.35918350642194, -34.586384564117445],
     [-58.359206409371964, -34.586386625826115],
     [-58.359241573383386, -34.58638919089028],
     [-58.36301875855575, -34.58668255013038],
     [-58.363039957322684, -34.58668573650533],
     [-58.36305773694533, -34.586699906167695],
     [-58.36305975148066, -34.586724274380025],
     [-58.36292601598591, -34.58790474632662],
     [-58.362901367049844, -34.587938177378334],
     [-58.36284593683349, -34.587934962976036],
     [-58.35905602016314, -34.58763179870493],
     [-58.35901940752945, -34.58762965489818],
     [-58.358996751124494, -34.58763449487599],
     [-58.35897323086038, -34.587649263841826],
     [-58.358960687905316, -34.58766988729278],
     [-58.35895640222011, -34.587692489622505],
     [-58.35886041972008, -34.58852699791241],
     [-58.35888289503375, -34.58853103117803],
     [-58.35890571096036, -34.5885350647292],
     [-58.35892869736962, -34.58853895757389],
     [-58.35895151365073, -34.58854270942251],
     [-58.35897424434364, -34.58854681331199],
     [-58.35899646394765, -34.58855105760991],
     [-58.35901817211283, -34.58855572401115],
     [-58.359039113293846, -34.588560882721914],
     [-58.35904138819198, -34.588580391986135],
     [-58.35904221619404, -34.58859933663265],
     [-58.35904551380166, -34.58861814252954],
     [-58.35904940783006, -34.588636667238504],
     [-58.35905619749279, -34.5886548422887],
     [-58.35906417982267, -34.58867259580959],
     [-58.35907395123989, -34.588689646613396],
     [-58.35908448929907, -34.58870648679653],
     [-58.35909835059725, -34.588721498786896],
     [-58.35911314919398, -34.588736018606056],
     [-58.35913007897774, -34.58874863879565],
     [-58.359147946409685, -34.58876048511903],
     [-58.35916777533389, -34.58876993870213],
     [-58.35918862819375, -34.5887777029846],
     [-58.359209737040196, -34.58878504493912],
     [-58.3592391927122, -34.588790915071286],
     [-58.36023684525206, -34.58899936548033],
     [-58.36021805119123, -34.58911787257829],
     [-58.360201642004874, -34.589166521488075],
     [-58.3601446637312, -34.58938309653168],
     [-58.36017701498796, -34.58938889844733],
     [-58.360251686478115, -34.58911811208964],
     [-58.360280681674816, -34.58901362783987],
     [-58.36080978324269, -34.58911681873268],
     [-58.362871630011384, -34.5894820548859],
     [-58.363934764982204, -34.58969595190091],
     [-58.36459510787226, -34.58982211877863],
     [-58.36504414627277, -34.589904414308826],
     [-58.36622615588828, -34.59014023585799],
     [-58.36739496852635, -34.59037057329146],
     [-58.367379162597814, -34.590558698416686],
     [-58.367335703404024, -34.59088771906426],
     [-58.36717847497796, -34.59097562343966],
     [-58.36713282361843, -34.591004930145075],
     [-58.36693502634127, -34.59110956954055],
     [-58.36686574852202, -34.59109506344543],
     [-58.366832542640466, -34.591090952798005],
     [-58.36679916523783, -34.59108789836012],
     [-58.3667656165557, -34.59108568886113],
     [-58.366732066741726, -34.59108446528188],
     [-58.36669843072041, -34.59108415713181],
     [-58.36666479340286, -34.59108497574839],
     [-58.36663124026731, -34.591086639504645],
     [-58.36659785622472, -34.591089359738206],
     [-58.36656455636191, -34.591092925111724],
     [-58.36653134043443, -34.59109754689548],
     [-58.3664984639882, -34.591103154867675],
     [-58.366465756873836, -34.59110960804724],
     [-58.36643338923861, -34.59111704741563],
     [-58.36640136116267, -34.5911254025496],
     [-58.36636967264518, -34.591134673449424],
     [-58.36633840884051, -34.59114486018269],
     [-58.36630756966641, -34.59115603317295],
     [-58.36627724052146, -34.59116798121751],
     [-58.36624750647906, -34.59118077480764],
     [-58.36621828222031, -34.59119455472326],
     [-58.36618956807021, -34.59120903927061],
     [-58.36616153425767, -34.59122429900893],
     [-58.3661341805379, -34.59124054520844],
     [-58.36610759239175, -34.59125749624329],
     [-58.3660816847451, -34.59127508162277],
     [-58.36605645727155, -34.59129358304213],
     [-58.36603216584519, -34.59131264858583],
     [-58.366008554754764, -34.59133248932277],
     [-58.365985879548376, -34.591353035032036],
     [-58.365964140307796, -34.59137421529146],
     [-58.365943166885266, -34.591395889118765],
     [-58.36592321450295, -34.59141826798763],
     [-58.36590411301323, -34.591441210916436],
     [-58.36588577668886, -34.59146521080246],
     [-58.365768054091724, -34.59164399317327],
     [-58.36567238187224, -34.59160694477927],
     [-58.365632710777774, -34.59167022400283],
     [-58.36572258573842, -34.591713042551916],
     [-58.36530048600662, -34.59235377192633],
     [-58.36520609242321, -34.59231510444957],
     [-58.36516428843011, -34.5923811987505],
     [-58.365253907786474, -34.592424580824236],
     [-58.36459574892761, -34.59342378599488],
     [-58.36445210420259, -34.59362684230801],
     [-58.36378419883924, -34.5946423028704],
     [-58.3637725035152, -34.59466637823205],
     [-58.36376677741102, -34.59468362735075],
     [-58.36376317952773, -34.594701512006075],
     [-58.363761625375524, -34.59471946874204],
     [-58.363762200114785, -34.59473749762743],
     [-58.363764989239876, -34.59475531703763],
     [-58.36376982243405, -34.59477292683412],
     [-58.36377670011598, -34.59478997489974],
     [-58.363785622286784, -34.5948064612341],
     [-58.36379641896311, -34.5948221040049],
     [-58.363809005153456, -34.594836762294946],
     [-58.36382321054011, -34.59485043596794],
     [-58.36383903545701, -34.5948628433276],
     [-58.36385630966924, -34.59487391381228],
     [-58.36387469262332, -34.59488357672216],
     [-58.36389426972793, -34.59489162085541],
     [-58.363914529943855, -34.59489811622119],
     [-58.36399981705589, -34.59493403080055],
     [-58.36401896630638, -34.59494383515546],
     [-58.364038714340424, -34.59495138643901],
     [-58.36405948678623, -34.59495682584233],
     [-58.364080943005575, -34.59496015308928],
     [-58.36410265720049, -34.5949613678356],
     [-58.36412445913411, -34.59496039952009],
     [-58.36414583784918, -34.59495724773008],
     [-58.36416670801851, -34.594952053243766],
     [-58.364186558851564, -34.5949446748022],
     [-58.36420530477218, -34.59493546445438],
     [-58.36422251998345, -34.594924421856945],
     [-58.364237948841016, -34.59491168765152],
     [-58.36425150585326, -34.59489754346371],
     [-58.36426285021761, -34.594882129866335],
     [-58.36427181128422, -34.59486572841635],
     [-58.36427804841761, -34.594848338839526],
     [-58.3645954938328, -34.59436520745183],
     [-58.36508193371667, -34.59362586886726],
     [-58.36529716985275, -34.59329807847933],
     [-58.36531140916254, -34.59328266709077],
     [-58.36533143145572, -34.5932738801267],
     [-58.365360386824705, -34.59327235390893],
     [-58.365389328479615, -34.59328258840306],
     [-58.365502701407905, -34.593331552686905],
     [-58.365524068830084, -34.59333769655113],
     [-58.365548690607866, -34.593328068131676],
     [-58.3655731407535, -34.593319566347134],
     [-58.36559702592779, -34.5932843031662],
     [-58.36578410563223, -34.593367622075796],
     [-58.36576354158018, -34.59340295835457],
     [-58.365771098201584, -34.5934222604042],
     [-58.36577243618728, -34.59344338852585],
     [-58.36579047392066, -34.59345692416878],
     [-58.36618191971776, -34.59362547621263],
     [-58.36631564437534, -34.59367614599907],
     [-58.36638170046755, -34.593625352367454],
     [-58.3665701517126, -34.59370219218666],
     [-58.36655473606038, -34.59377788533329],
     [-58.36852596260662, -34.594620279356846],
     [-58.3684583819601, -34.59466417145911],
     [-58.36730346468114, -34.59793353002653],
     [-58.367289021295655, -34.59795961316812],
     [-58.36726722253879, -34.597966681287005],
     [-58.36723808575928, -34.59796578411836],
     [-58.36590592929359, -34.59786578574508],
     [-58.365886262602956, -34.59787311728385],
     [-58.365866841978466, -34.59789149930336],
     [-58.3658608917806, -34.5979182757851],
     [-58.365852850617955, -34.59794333790778],
     [-58.365846263411356, -34.5980023847369],
     [-58.36583108728692, -34.59813575588052],
     [-58.36576453619666, -34.5987048627131],
     [-58.36549646629025, -34.5986845083512],
     [-58.365579545217955, -34.597914282554875],
     [-58.36557852919879, -34.59787114145041],
     [-58.365553078828995, -34.59784052697883],
     [-58.365507507681, -34.597832745234065],
     [-58.36324108325133, -34.5976547205645],
     [-58.3632243375889, -34.597647351322756],
     [-58.36321483651894, -34.59763453439116],
     [-58.36380416846146, -34.595971844435525],
     [-58.363810171909435, -34.59593621501035],
     [-58.36380891587038, -34.59591818557663],
     [-58.36380484912759, -34.595900505982506],
     [-58.363798056592614, -34.595883387566815],
     [-58.36378285092599, -34.59586108141559],
     [-58.36377216471427, -34.59584582071271],
     [-58.363755221738245, -34.59583045577954],
     [-58.36371755314624, -34.595809070571704],
     [-58.36355172184884, -34.59576480238268],
     [-58.36348671616316, -34.59575151669024],
     [-58.36347131464256, -34.59575077401632],
     [-58.363451419827165, -34.595751956726666],
     [-58.36340147714248, -34.59575826209924],
     [-58.36337466391497, -34.59576574009832],
     [-58.36334843471584, -34.59577707664846],
     [-58.36332648807198, -34.595789534442126],
     [-58.36330560653488, -34.59580462524811],
     [-58.36328830804274, -34.59582241421772],
     [-58.363264855730996, -34.595854323434395],
     [-58.363252679217936, -34.59588230262697],
     [-58.363222232052074, -34.59587485911684],
     [-58.36321368900146, -34.59589981249431],
     [-58.36322433570191, -34.59590241726543],
     [-58.36319667614058, -34.59597970056115],
     [-58.36320402095039, -34.5959815003774],
     [-58.36319604859065, -34.596003200089065],
     [-58.36318889997772, -34.59600140944624],
     [-58.36298684407389, -34.59657919040687],
     [-58.36300429213633, -34.596582377664014],
     [-58.362936806808065, -34.59677357693355],
     [-58.36292686829803, -34.59677118004312],
     [-58.362899392846, -34.59684899524834],
     [-58.36290933136452, -34.596851392140934],
     [-58.3628188544327, -34.59710772721384],
     [-58.36254220402651, -34.59708456268055],
     [-58.362170388710624, -34.59701404471616],
     [-58.36188730968787, -34.59694557081868],
     [-58.36164337445047, -34.59683226892644],
     [-58.36142054340344, -34.59673250537276],
     [-58.36108367139506, -34.59657173017941],
     [-58.36049850639928, -34.596304794490315],
     [-58.360519760546204, -34.59627301580088],
     [-58.36033029251947, -34.596186251879594],
     [-58.36031136002285, -34.596213685383056],
     [-58.35983321000558, -34.59598468858501],
     [-58.3597841277235, -34.59595922037406],
     [-58.359753224391184, -34.595924156082305],
     [-58.35973337191712, -34.59591745079046],
     [-58.35972263529149, -34.59587628398555],
     [-58.359723331844, -34.5958296799932],
     [-58.35975682478053, -34.59570412684708],
     [-58.359765200478435, -34.59566195189714],
     [-58.35976510940305, -34.595641382811536],
     [-58.359766794400095, -34.59562461639241],
     [-58.359763589751715, -34.595606314847004],
     [-58.35974144828393, -34.595555960830076],
     [-58.35972787171584, -34.59553390062138],
     [-58.35971381796965, -34.595518699820836],
     [-58.359698989684404, -34.595503994146306],
     [-58.359688306420445, -34.59549581825552],
     [-58.3596755105064, -34.59548764734135],
     [-58.35964262018978, -34.595471270048634],
     [-58.35961005733002, -34.59546502274011],
     [-58.35958909964306, -34.595461868088385],
     [-58.35956493449655, -34.595460919203916],
     [-58.35951397164155, -34.59545485102531],
     [-58.359485580242286, -34.595449086856306],
     [-58.35945014349694, -34.59544189229431],
     [-58.359419653700854, -34.59544287608408],
     [-58.35929133955088, -34.595438007914],
     [-58.35890902865301, -34.595393531747526],
     [-58.35883825755796, -34.59538799258436],
     [-58.35874342334952, -34.595377838247664],
     [-58.35871222293326, -34.59537449745834],
     [-58.358665393769726, -34.59537516966572],
     [-58.358638468382594, -34.595384722694135],
     [-58.35860400213262, -34.595384158562126],
     [-58.358549710269266, -34.59538153417298],
     [-58.358488604206535, -34.59538004874501],
     [-58.35834786925816, -34.59537073398486],
     [-58.35829043142657, -34.59536471744771],
     [-58.35824242952063, -34.59536179182046],
     [-58.35821041974911, -34.595366632087995],
     [-58.35814832342867, -34.59538121797488],
     [-58.358085098607596, -34.595409071777],
     [-58.35807815229795, -34.59541993695625],
     [-58.358077520174845, -34.59543724369425],
     [-58.35807147300881, -34.59546071883129],
     [-58.35793598419467, -34.59539737862112],
     [-58.35790440814338, -34.595383289126474],
     [-58.35788043885849, -34.59538166638565],
     [-58.355336192026165, -34.595220945295345],
     [-58.353665898911096, -34.59513502652255],
     [-58.35054484099518, -34.5956138241909],
     [-58.350543053224705, -34.59580347300872],
     [-58.35368415752331, -34.59530420008107],
     [-58.356727681299446, -34.59554014856447],
     [-58.35709300534141, -34.59559005627245],
     [-58.3579202495789, -34.595628587957805],
     [-58.35865679283818, -34.595687232323854],
     [-58.36268567489602, -34.597532784974476],
     [-58.36285518474697, -34.59757257221004],
     [-58.362844075521345, -34.597604464955694],
     [-58.362937811715064, -34.5976272179865],
     [-58.36290360088011, -34.59774930432344],
     [-58.36263792154942, -34.59850825178895],
     [-58.363134966386, -34.59855126456373],
     [-58.36326590918471, -34.598583061897074],
     [-58.36349284491341, -34.5986030356056],
     [-58.364472902305316, -34.59867453363686],
     [-58.365365080368115, -34.59873968604103],
     [-58.366010580050535, -34.59877188979441],
     [-58.366763497993766, -34.59870663813004],
     [-58.36718178141168, -34.59873985403498],
     [-58.36738477123901, -34.59884874660002],
     [-58.367520396097724, -34.59888406419871],
     [-58.368916353536804, -34.59876817169889],
     [-58.369882467628656, -34.59637458234821],
     [-58.37159312548836, -34.59220989755578],
     [-58.371693817379764, -34.59206124435954],
     [-58.371754490386145, -34.59198163434854],
     [-58.37189370787717, -34.591993639600794]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_1',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 341.0,
   'VIVIEND': 365.0,
   'HOGARES': 116.0,
   'HOGARES_': 25.0,
   'AREA_KM': 0.018564690101743,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38592564101119, -34.60443992120433],
     [-58.38574551830188, -34.60442931464455],
     [-58.384536014372586, -34.6043584040912],
     [-58.38444592233615, -34.60552089597483],
     [-58.3844419866183, -34.605630753956625],
     [-58.38587923494238, -34.605722724794425],
     [-58.38589840716631, -34.60562055250911],
     [-58.38592564101119, -34.60443992120433]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_10',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 296.0,
   'VIVIEND': 629.0,
   'HOGARES': 101.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.044380251784551,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37878686017062, -34.60528494927633],
     [-58.377410099763004, -34.60519110618724],
     [-58.37747466080175, -34.603938318859235],
     [-58.37606240124221, -34.60385183021865],
     [-58.37605765053059, -34.60399781458498],
     [-58.37598308523146, -34.60510411335117],
     [-58.37597356984884, -34.60524523508288],
     [-58.375932556786694, -34.60627240154613],
     [-58.3759179523522, -34.60663852234172],
     [-58.375905963802595, -34.60686429117764],
     [-58.37612838220399, -34.60674789849943],
     [-58.37691170041352, -34.60633668624956],
     [-58.37736087771015, -34.606100942047085],
     [-58.378782616713636, -34.60535466552463],
     [-58.37878686017062, -34.60528494927633]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_11',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 528.0,
   'VIVIEND': 375.0,
   'HOGARES': 136.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.366340000870034,
   'partidas': 75.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.367325165171714, -34.60562096904693],
     [-58.367128643968904, -34.60735999104281],
     [-58.36741685560397, -34.607369089806774],
     [-58.36755913372025, -34.60741110273389],
     [-58.36778454066985, -34.607362366965745],
     [-58.36823291322633, -34.607272117587144],
     [-58.36848611453629, -34.60721384762791],
     [-58.368624176029385, -34.607183675716],
     [-58.368654780097806, -34.607036243501376],
     [-58.368769835813715, -34.6069705567005],
     [-58.36884276736141, -34.60694864073262],
     [-58.36906713137574, -34.60697646913866],
     [-58.3692483828163, -34.6069993047951],
     [-58.369250104272254, -34.60699944784988],
     [-58.369250219655356, -34.606999457438356],
     [-58.369596379644555, -34.60721837039159],
     [-58.369598182056855, -34.6072371407795],
     [-58.36970759814363, -34.6076374801351],
     [-58.369986171829574, -34.607810584548126],
     [-58.37002794613998, -34.60783653943933],
     [-58.37016158384435, -34.607955887379326],
     [-58.37022779368164, -34.60803183581902],
     [-58.37033117733972, -34.60814612882323],
     [-58.37032165390922, -34.60828555986857],
     [-58.3715817739526, -34.60837601555499],
     [-58.37258853573745, -34.60843958091331],
     [-58.372921710284544, -34.6084606014236],
     [-58.37291906767505, -34.60838355632227],
     [-58.37297468176548, -34.608387188825404],
     [-58.37440543267576, -34.60764977320026],
     [-58.37498338934767, -34.60734722873309],
     [-58.375905963802595, -34.60686429117764],
     [-58.3759179523522, -34.60663852234172],
     [-58.375932556786694, -34.60627240154613],
     [-58.37597356984884, -34.60524523508288],
     [-58.37598308523146, -34.60510411335117],
     [-58.37605765053059, -34.60399781458498],
     [-58.37606240124221, -34.60385183021865],
     [-58.37462008225668, -34.603763402105166],
     [-58.37325356105474, -34.603679660477994],
     [-58.37197901811408, -34.603601535419735],
     [-58.37186447515843, -34.60359398531869],
     [-58.37067816891043, -34.603515912329826],
     [-58.370497966339876, -34.60350408600408],
     [-58.37001893106444, -34.60347252550303],
     [-58.36987645338074, -34.60346495231382],
     [-58.369667378242795, -34.60345387745078],
     [-58.369478401610884, -34.60344387393793],
     [-58.3693350723475, -34.603436299465976],
     [-58.368586860128524, -34.603370935105275],
     [-58.36841483866459, -34.60335523872529],
     [-58.36758970415003, -34.603279992711656],
     [-58.367451557014704, -34.60450274425184],
     [-58.367325165171714, -34.60562096904693]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_2',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 229.0,
   'VIVIEND': 445.0,
   'HOGARES': 129.0,
   'HOGARES_': 16.0,
   'AREA_KM': 0.018363007984005,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384536014372586, -34.6043584040912],
     [-58.383114879769636, -34.604275019596166],
     [-58.38311405504677, -34.604425302625316],
     [-58.38302347071154, -34.60554737007848],
     [-58.38313886995507, -34.60555399475836],
     [-58.38430444496643, -34.605621933158744],
     [-58.3844419866183, -34.605630753956625],
     [-58.38444592233615, -34.60552089597483],
     [-58.384536014372586, -34.6043584040912]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_3',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 723.0,
   'VIVIEND': 744.0,
   'HOGARES': 314.0,
   'HOGARES_': 104.0,
   'AREA_KM': 0.036725404151844,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.381537079912825, -34.605461107641794],
     [-58.38152934628431, -34.60561885091304],
     [-58.381481559480235, -34.60658756331221],
     [-58.38161331358623, -34.60659349608673],
     [-58.382853587724014, -34.60667121639401],
     [-58.38298482578577, -34.6066826403741],
     [-58.3830179551121, -34.60561511378774],
     [-58.38302347071154, -34.60554737007848],
     [-58.38311405504677, -34.604425302625316],
     [-58.383114879769636, -34.604275019596166],
     [-58.381609009960385, -34.60418663262474],
     [-58.38155350148395, -34.60512759332856],
     [-58.381537079912825, -34.605461107641794]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_4',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 393.0,
   'VIVIEND': 341.0,
   'HOGARES': 209.0,
   'HOGARES_': 110.0,
   'AREA_KM': 0.016711789258401,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3844419866183, -34.605630753956625],
     [-58.38430444496643, -34.605621933158744],
     [-58.38313886995507, -34.60555399475836],
     [-58.38302347071154, -34.60554737007848],
     [-58.3830179551121, -34.60561511378774],
     [-58.38298482578577, -34.6066826403741],
     [-58.383112061102636, -34.60669377990855],
     [-58.3842832492267, -34.60678735628438],
     [-58.384395754196554, -34.606794259608776],
     [-58.38441381914436, -34.60669434041404],
     [-58.38443909883276, -34.605713006635824],
     [-58.3844419866183, -34.605630753956625]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_5',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 600.0,
   'VIVIEND': 505.0,
   'HOGARES': 275.0,
   'HOGARES_': 32.0,
   'AREA_KM': 0.033328915102877,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384395754196554, -34.606794259608776],
     [-58.38438085734495, -34.60687629329277],
     [-58.38432089406076, -34.60787605551807],
     [-58.384319097633245, -34.60797499920445],
     [-58.384783431991025, -34.60800374766286],
     [-58.385712701395875, -34.60805743679537],
     [-58.385711519682374, -34.60795356157324],
     [-58.38577004087227, -34.607021826746895],
     [-58.385779962956704, -34.606883732742354],
     [-58.38585407129034, -34.605856865524764],
     [-58.38587923494238, -34.605722724794425],
     [-58.3844419866183, -34.605630753956625],
     [-58.38443909883276, -34.605713006635824],
     [-58.38441381914436, -34.60669434041404],
     [-58.384395754196554, -34.606794259608776]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_6',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 472.0,
   'VIVIEND': 504.0,
   'HOGARES': 202.0,
   'HOGARES_': 49.0,
   'AREA_KM': 0.035468412370619,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384395754196554, -34.606794259608776],
     [-58.3842832492267, -34.60678735628438],
     [-58.383112061102636, -34.60669377990855],
     [-58.38298482578577, -34.6066826403741],
     [-58.382853587724014, -34.60667121639401],
     [-58.38161331358623, -34.60659349608673],
     [-58.381481559480235, -34.60658756331221],
     [-58.38147408670652, -34.60673960242989],
     [-58.3814257976615, -34.60778535746438],
     [-58.38156913381251, -34.60779467832344],
     [-58.38291221385656, -34.60788824118673],
     [-58.38305120622009, -34.60789790958089],
     [-58.384319097633245, -34.60797499920445],
     [-58.38432089406076, -34.60787605551807],
     [-58.38438085734495, -34.60687629329277],
     [-58.384395754196554, -34.606794259608776]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_7',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 786.0,
   'VIVIEND': 546.0,
   'HOGARES': 347.0,
   'HOGARES_': 89.0,
   'AREA_KM': 0.033140781980991,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384783431991025, -34.60800374766286],
     [-58.384319097633245, -34.60797499920445],
     [-58.38305120622009, -34.60789790958089],
     [-58.38291221385656, -34.60788824118673],
     [-58.3828676883421, -34.60902449308644],
     [-58.38301119477922, -34.60903627718015],
     [-58.38411096265077, -34.60912156899491],
     [-58.384269288212096, -34.60913491046747],
     [-58.38446687589992, -34.60915151639117],
     [-58.38554672836514, -34.60922354290098],
     [-58.385679080613215, -34.60923221817486],
     [-58.385712701395875, -34.60805743679537],
     [-58.384783431991025, -34.60800374766286]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_8',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 329.0,
   'VIVIEND': 275.0,
   'HOGARES': 129.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.017167233727284,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38291221385656, -34.60788824118673],
     [-58.38156913381251, -34.60779467832344],
     [-58.3814257976615, -34.60778535746438],
     [-58.38137402854804, -34.60890484323811],
     [-58.38157169945653, -34.60892229898613],
     [-58.38270748926304, -34.60901128941349],
     [-58.3828676883421, -34.60902449308644],
     [-58.38291221385656, -34.60788824118673]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_12_9',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 1356.0,
   'VIVIEND': 895.0,
   'HOGARES': 342.0,
   'HOGARES_': 57.0,
   'AREA_KM': 0.215742716193438,
   'partidas': 54.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.375905963802616, -34.606864291177644],
     [-58.37498338934768, -34.60734722873309],
     [-58.37440543267576, -34.607649773200265],
     [-58.37297468176548, -34.608387188825404],
     [-58.37351404475792, -34.608422655119014],
     [-58.37432057706317, -34.60847627080943],
     [-58.37438530412618, -34.608480543080766],
     [-58.375606772553894, -34.60856177417818],
     [-58.37580299964116, -34.6085733226789],
     [-58.37721270035839, -34.608657981516785],
     [-58.37862069858821, -34.60874452432515],
     [-58.37875901140515, -34.60875328163636],
     [-58.379894991860375, -34.60881645300228],
     [-58.38011643637622, -34.608823082042996],
     [-58.380290606254476, -34.60883312950404],
     [-58.38074659752118, -34.60886132430171],
     [-58.381195945909795, -34.60888916084096],
     [-58.38137402854804, -34.60890484323811],
     [-58.3814257976615, -34.60778535746438],
     [-58.38147408670652, -34.60673960242989],
     [-58.381481559480235, -34.60658756331221],
     [-58.38152934628431, -34.60561885091304],
     [-58.381537079912825, -34.605461107641794],
     [-58.38155350148395, -34.60512759332856],
     [-58.381609009960385, -34.60418663262474],
     [-58.38140469358618, -34.60418304591719],
     [-58.38124031375484, -34.6042744867235],
     [-58.38085137108338, -34.60425778038015],
     [-58.38076238828314, -34.60425270375818],
     [-58.38067340384954, -34.604249299369805],
     [-58.38057674492161, -34.60412002589556],
     [-58.380378646277464, -34.60411623038448],
     [-58.380359461653285, -34.60448333469463],
     [-58.37995952725881, -34.60472123611724],
     [-58.37973514375301, -34.60485467695482],
     [-58.378901491470415, -34.605292281669556],
     [-58.378786860170635, -34.60528494927633],
     [-58.37878261671366, -34.60535466552463],
     [-58.37736087771017, -34.606100942047085],
     [-58.376911700413515, -34.60633668624958],
     [-58.376128382204, -34.606747898499435],
     [-58.375905963802616, -34.606864291177644]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_1',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 586.0,
   'VIVIEND': 404.0,
   'HOGARES': 163.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.375500193863425,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36258288814479, -34.59866532140381],
     [-58.36241069305721, -34.599157369587324],
     [-58.36235814409347, -34.59930751993874],
     [-58.362324381119706, -34.59940399199531],
     [-58.3603378440834, -34.605022001790594],
     [-58.360940353815394, -34.60508383281327],
     [-58.3624814041981, -34.600851475906985],
     [-58.36314637149991, -34.600896607363666],
     [-58.36320523459941, -34.60090060223646],
     [-58.362783495174035, -34.605238879079224],
     [-58.3629943599658, -34.6052520094787],
     [-58.36393584292073, -34.60531080407693],
     [-58.36405260323584, -34.60533258518618],
     [-58.36413937473855, -34.605373334882245],
     [-58.36420298876829, -34.605418851656175],
     [-58.364246336464014, -34.605471530792904],
     [-58.3642810242466, -34.6055377758895],
     [-58.36474507111502, -34.60557624837554],
     [-58.3649401770585, -34.60559239096555],
     [-58.36497185728582, -34.60559502200997],
     [-58.36578428802528, -34.60560165602701],
     [-58.36604299664086, -34.605634565797466],
     [-58.366116414335885, -34.60566065138938],
     [-58.36614783508367, -34.60570983922436],
     [-58.3662049354268, -34.6057560053769],
     [-58.36622820945612, -34.605769187554216],
     [-58.36627366887685, -34.60577645333738],
     [-58.366308665814884, -34.605757683385924],
     [-58.366326203535905, -34.60571431815186],
     [-58.366354198719215, -34.60570132653485],
     [-58.36635830756352, -34.60569929490376],
     [-58.36643289288671, -34.60570138864977],
     [-58.366509846632034, -34.60569421949381],
     [-58.36662013004277, -34.60559742642313],
     [-58.366691849054824, -34.60558013124245],
     [-58.366753047225544, -34.605587409230544],
     [-58.367325165171714, -34.60562096904693],
     [-58.367451557014704, -34.60450274425184],
     [-58.36758970415003, -34.603279992711656],
     [-58.36758970897242, -34.603279950027606],
     [-58.36758973289771, -34.60327973825967],
     [-58.36771740822054, -34.602149964309426],
     [-58.367793547002435, -34.60147635298557],
     [-58.36803549579051, -34.60088273047571],
     [-58.36847642633781, -34.59980094500313],
     [-58.368533894129996, -34.5996660580189],
     [-58.368916353536804, -34.59876817169878],
     [-58.36834613225456, -34.598815479221635],
     [-58.367520396097724, -34.59888406419871],
     [-58.36738477123901, -34.59884874659999],
     [-58.36718178141168, -34.59873985403502],
     [-58.366763497993766, -34.598706638130565],
     [-58.366010580050535, -34.59877188979441],
     [-58.36562523885028, -34.59875263993375],
     [-58.365365080368115, -34.59873968604102],
     [-58.364472902305316, -34.59867453363686],
     [-58.36349284491341, -34.59860303560559],
     [-58.36326590918471, -34.59858306189708],
     [-58.363134966386, -34.59855126456373],
     [-58.36263792154942, -34.59850825178895],
     [-58.36258288814479, -34.59866532140381]],
    [[-58.364212468461034, -34.599472432820114],
     [-58.36410018934703, -34.600509327480445],
     [-58.3632933849593, -34.60044865068923],
     [-58.36340585541082, -34.59942220099765],
     [-58.364212468461034, -34.599472432820114]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_4',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 725.0,
   'VIVIEND': 641.0,
   'HOGARES': 136.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.311734674561478,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36080032972836, -34.60550639712792],
     [-58.36068324048064, -34.60583855680806],
     [-58.36089741107443, -34.60593542699584],
     [-58.3609814203771, -34.60597972294476],
     [-58.36106158173549, -34.60603662141522],
     [-58.36113798026287, -34.606106192908705],
     [-58.36120277650929, -34.60619152953939],
     [-58.36124858356907, -34.60627375171804],
     [-58.36127896716959, -34.60636222873923],
     [-58.36129803079951, -34.606444358240445],
     [-58.361351391448174, -34.606548699594306],
     [-58.36142002865359, -34.60662770119076],
     [-58.36150782558721, -34.60670995811493],
     [-58.361580311064145, -34.60677635702744],
     [-58.361675808280154, -34.60683009874539],
     [-58.36177132462119, -34.60686813599239],
     [-58.36189349979556, -34.60690612476994],
     [-58.36204251548521, -34.60693469883967],
     [-58.36219146137986, -34.606950596463236],
     [-58.36234433657431, -34.60695706040541],
     [-58.36254321584332, -34.60697009360204],
     [-58.36237501689098, -34.608545979821876],
     [-58.36353873180033, -34.608614820443336],
     [-58.363270766187924, -34.61104649410638],
     [-58.36313968562066, -34.61208044667596],
     [-58.36313243350108, -34.61214385965262],
     [-58.363028728292235, -34.61227078070841],
     [-58.36307916387174, -34.612348406248664],
     [-58.36307931560542, -34.61234863978213],
     [-58.36310155409947, -34.61241386992206],
     [-58.36405629784517, -34.612491759135615],
     [-58.36410884715191, -34.612496027011396],
     [-58.364411876430296, -34.61252260983536],
     [-58.36499668251467, -34.61254054455386],
     [-58.36536050667499, -34.61258611756333],
     [-58.365385627636286, -34.612591560198375],
     [-58.3654771700347, -34.612611492555715],
     [-58.36559924209318, -34.6126735622841],
     [-58.365729488268336, -34.6128115547102],
     [-58.365836725843494, -34.61266572281016],
     [-58.366013134775194, -34.612586636523226],
     [-58.36624362572468, -34.61258569219894],
     [-58.366531329309204, -34.612607750549564],
     [-58.366663159955344, -34.61144502462584],
     [-58.36695415710729, -34.60889156232119],
     [-58.367128643968904, -34.60735999104281],
     [-58.367325165171714, -34.60562096904693],
     [-58.366753047225544, -34.605587409230544],
     [-58.366691849054824, -34.60558013124245],
     [-58.36662013004277, -34.60559742642313],
     [-58.366509846632034, -34.60569421949381],
     [-58.36643289288671, -34.60570138864977],
     [-58.36635830756352, -34.60569929490376],
     [-58.366354198719215, -34.60570132653485],
     [-58.366326203535905, -34.60571431815186],
     [-58.366308665814884, -34.605757683385924],
     [-58.36627366887685, -34.60577645333738],
     [-58.36622820945612, -34.605769187554216],
     [-58.3662049354268, -34.6057560053769],
     [-58.36614783508367, -34.60570983922436],
     [-58.366116414335885, -34.60566065138938],
     [-58.36604299664086, -34.605634565797466],
     [-58.36578428802528, -34.60560165602701],
     [-58.36497185728582, -34.60559502200997],
     [-58.3649401770585, -34.60559239096555],
     [-58.36474507111502, -34.60557624837554],
     [-58.3642810242466, -34.6055377758895],
     [-58.364246336464014, -34.605471530792904],
     [-58.36420298876829, -34.605418851656175],
     [-58.36413937473855, -34.605373334882245],
     [-58.36405260323584, -34.60533258518618],
     [-58.36393584292073, -34.60531080407693],
     [-58.3629943599658, -34.6052520094787],
     [-58.362783495174035, -34.605238879079224],
     [-58.361684064704974, -34.605146423391446],
     [-58.360940353815394, -34.60508383281327],
     [-58.36080032972836, -34.60550639712792]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_13',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 358.0,
   'VIVIEND': 266.0,
   'HOGARES': 104.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.222049331081644,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36394485908457, -34.612480083199706],
     [-58.363907739238776, -34.612844057228195],
     [-58.36340147710286, -34.61280724581493],
     [-58.36308348692348, -34.61280044003576],
     [-58.36279591392408, -34.61534949656336],
     [-58.36244261783147, -34.61532357266267],
     [-58.36229221146588, -34.61664958947335],
     [-58.361505841163016, -34.61659412307962],
     [-58.36134795216421, -34.61794692361507],
     [-58.36228366027121, -34.618020934374435],
     [-58.36254853511818, -34.61827023911671],
     [-58.36330216750404, -34.618327264512644],
     [-58.36350616287187, -34.61834271239875],
     [-58.3643375574496, -34.61840944258783],
     [-58.36514668107178, -34.618509882034886],
     [-58.36585542621768, -34.618566503639016],
     [-58.3659962257602, -34.61732540563489],
     [-58.36613848390131, -34.61607156175379],
     [-58.36625903432985, -34.61502361795804],
     [-58.36639362441176, -34.613838359522845],
     [-58.366531329309204, -34.612607750549564],
     [-58.36624362572468, -34.61258569219894],
     [-58.366013134775194, -34.612586636523226],
     [-58.365836725843494, -34.61266572281016],
     [-58.365729488268336, -34.6128115547102],
     [-58.36559924209318, -34.6126735622841],
     [-58.3654771700347, -34.612611492555715],
     [-58.365385627636286, -34.612591560198375],
     [-58.36536050667499, -34.61258611756333],
     [-58.36499668251467, -34.61254054455386],
     [-58.364411876430296, -34.61252260983536],
     [-58.36410884715191, -34.612496027011396],
     [-58.36405629784517, -34.612491759135615],
     [-58.36394485908457, -34.612480083199706]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_9',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 426.0,
   'VIVIEND': 252.0,
   'HOGARES': 157.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.058342910500854,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36160119734996, -34.6139276522426],
     [-58.36074803597177, -34.61386743457632],
     [-58.36060441931137, -34.61519380739242],
     [-58.36146031965337, -34.61525423960514],
     [-58.361642844872655, -34.615267137550894],
     [-58.36244261783147, -34.61532357266267],
     [-58.36279591392408, -34.61534949656336],
     [-58.36308348692348, -34.61280044003576],
     [-58.36340147710286, -34.61280724581493],
     [-58.363907739238776, -34.612844057228195],
     [-58.36394485908457, -34.612480083199706],
     [-58.36310155409947, -34.61241386992206],
     [-58.36307931560542, -34.61234863978213],
     [-58.36307916387174, -34.612348406248664],
     [-58.363028728292235, -34.61227078070841],
     [-58.36294190511395, -34.61222282189543],
     [-58.36282613629197, -34.61216286735058],
     [-58.36199224128376, -34.61210323755518],
     [-58.361953742154185, -34.61210050021752],
     [-58.36194514254069, -34.612099888772256],
     [-58.36182232815243, -34.61209112521716],
     [-58.361748397660335, -34.61215902255879],
     [-58.361697011200285, -34.61224982609587],
     [-58.36168921852888, -34.61235446867924],
     [-58.36173134533724, -34.61245443422265],
     [-58.361741171840045, -34.61256944361207],
     [-58.36160119734996, -34.6139276522426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_10',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 614.0,
   'VIVIEND': 641.0,
   'HOGARES': 235.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.230992092045403,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.360311013038164, -34.617864829496],
     [-58.36046071267417, -34.616520320516294],
     [-58.36060441931137, -34.61519380739242],
     [-58.36074803597177, -34.61386743457632],
     [-58.36160119734996, -34.6139276522426],
     [-58.361741171840045, -34.61256944361207],
     [-58.36173134533724, -34.61245443422265],
     [-58.36168921852888, -34.61235446867924],
     [-58.361697011200285, -34.61224982609587],
     [-58.361748397660335, -34.61215902255879],
     [-58.36182232815243, -34.61209112521716],
     [-58.361206638588705, -34.61204702254856],
     [-58.358931854555635, -34.61188433252991],
     [-58.358535384293845, -34.61193103744069],
     [-58.35863924129309, -34.61163661578169],
     [-58.358214112416505, -34.61157956166432],
     [-58.35822187919638, -34.61163499146296],
     [-58.35821059916974, -34.6117323068199],
     [-58.358181008296036, -34.61182791632921],
     [-58.35813558157872, -34.611917878393605],
     [-58.35808336413053, -34.61198910201678],
     [-58.358028856279674, -34.61205278835776],
     [-58.35797442644764, -34.612122108605156],
     [-58.3579221400136, -34.61218023336256],
     [-58.3578790526977, -34.61223829557765],
     [-58.3578363011592, -34.612300231347284],
     [-58.35624924200071, -34.61680284801279],
     [-58.35612553915303, -34.61734898605338],
     [-58.357074447463205, -34.617565610505245],
     [-58.35721937103753, -34.61757919966784],
     [-58.35748148480682, -34.61760864347904],
     [-58.359243789314135, -34.61777437773711],
     [-58.35964648594653, -34.617812254169074],
     [-58.360303265648355, -34.617864216184806],
     [-58.360311013038164, -34.617864829496]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_13_11',
   'BARRIO': 'PUERTO MADERO',
   'COMUNA': '1',
   'POBLACI': 292.0,
   'VIVIEND': 382.0,
   'HOGARES': 142.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.014406059324339,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.360311013038164, -34.617864829496],
     [-58.36114214934323, -34.61793062231943],
     [-58.361337113963614, -34.617946066314055],
     [-58.36134795216421, -34.61794692361507],
     [-58.361505841163016, -34.61659412307962],
     [-58.36147794626562, -34.61659215542697],
     [-58.361295588535256, -34.6165792573739],
     [-58.36046071267417, -34.616520320516294],
     [-58.360311013038164, -34.617864829496]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 622.0,
   'VIVIEND': 538.0,
   'HOGARES': 247.0,
   'HOGARES_': 74.0,
   'AREA_KM': 0.115895541799784,
   'partidas': 27.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37278324192131, -34.611836383137856],
     [-58.37405024428777, -34.61191569150961],
     [-58.3741905217555, -34.61192368077018],
     [-58.37560887599668, -34.61201244896647],
     [-58.3756189019629, -34.61170998795188],
     [-58.375667532816706, -34.610898464206954],
     [-58.375736533792164, -34.60974645797951],
     [-58.3757611514945, -34.60933569612482],
     [-58.375771396009235, -34.60914957450175],
     [-58.37580299964116, -34.6085733226789],
     [-58.375606772553894, -34.60856177417818],
     [-58.37438530412618, -34.608480543080766],
     [-58.37432057706317, -34.60847627080943],
     [-58.37351404475792, -34.608422655119014],
     [-58.37297468176548, -34.608387188825404],
     [-58.37291906767508, -34.608383556322266],
     [-58.37292171028455, -34.60846060142361],
     [-58.372914383286925, -34.60862080917467],
     [-58.372911135030705, -34.60878989326571],
     [-58.37290780082882, -34.60895968152224],
     [-58.37290518810942, -34.60909221635125],
     [-58.37289959768536, -34.609379821203724],
     [-58.372902561289514, -34.60947517659977],
     [-58.37290453798959, -34.60953785483457],
     [-58.372917550894435, -34.60995089733264],
     [-58.37285236044379, -34.6106920549825],
     [-58.371585305658115, -34.61060083258812],
     [-58.37145704030182, -34.61059291973978],
     [-58.37145105357084, -34.610693127666686],
     [-58.37139189290475, -34.61174922204437],
     [-58.37278324192131, -34.611836383137856]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_10',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 431.0,
   'VIVIEND': 341.0,
   'HOGARES': 220.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.03037451700702,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3725874246895, -34.61530134675714],
     [-58.37240557597769, -34.61529135303994],
     [-58.3713277339727, -34.615266747456424],
     [-58.37119119661072, -34.615261011254624],
     [-58.37096437266148, -34.61525140418506],
     [-58.370315745329144, -34.61523443567625],
     [-58.370059269699766, -34.61523311441308],
     [-58.36996859892126, -34.61634073319188],
     [-58.37009379792744, -34.61635632141335],
     [-58.371120836088764, -34.61642604109299],
     [-58.371117889575736, -34.61647188442749],
     [-58.372394587231234, -34.61647163897645],
     [-58.37253129808982, -34.61647638803446],
     [-58.37258152132988, -34.6154041603855],
     [-58.3725874246895, -34.61530134675714]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_11',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 522.0,
   'VIVIEND': 412.0,
   'HOGARES': 253.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.016660813488724,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3739799581441, -34.615372931530864],
     [-58.37280027716231, -34.61531305321277],
     [-58.3725874246895, -34.61530134675714],
     [-58.37258152132988, -34.6154041603855],
     [-58.37253129808982, -34.61647638803446],
     [-58.372671245699635, -34.6164812801745],
     [-58.373741161306576, -34.616525234515045],
     [-58.37393706831356, -34.6165347435084],
     [-58.373945693709736, -34.616433974087485],
     [-58.37397215345694, -34.61550306807642],
     [-58.3739799581441, -34.615372931530864]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_12',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 511.0,
   'VIVIEND': 309.0,
   'HOGARES': 217.0,
   'HOGARES_': 43.0,
   'AREA_KM': 0.017488719105471,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37544012444596, -34.615447084042884],
     [-58.3739799581441, -34.615372931530864],
     [-58.37397215345694, -34.61550306807642],
     [-58.373945693709736, -34.616433974087485],
     [-58.37393706831356, -34.6165347435084],
     [-58.374109466445425, -34.616543178768644],
     [-58.37465510061604, -34.61657892625993],
     [-58.37526167794587, -34.61665971547426],
     [-58.3753797321879, -34.61666670151161],
     [-58.37543629581924, -34.61552419479653],
     [-58.37544012444596, -34.615447084042884]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 1096.0,
   'VIVIEND': 382.0,
   'HOGARES': 226.0,
   'HOGARES_': 74.0,
   'AREA_KM': 0.276915079816636,
   'partidas': 23.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.368769835813715, -34.6069705567005],
     [-58.368654780097806, -34.607036243501376],
     [-58.368624176029385, -34.607183675716],
     [-58.36848611453629, -34.60721384762791],
     [-58.36823291322633, -34.607272117587144],
     [-58.36778454066985, -34.607362366965745],
     [-58.36755913372025, -34.60741110273389],
     [-58.36741685560397, -34.607369089806774],
     [-58.367128643968904, -34.60735999104281],
     [-58.36695415710729, -34.60889156232119],
     [-58.366663159955344, -34.61144502462584],
     [-58.366531329309204, -34.612607750549564],
     [-58.36678062245984, -34.612625975170154],
     [-58.36676904559529, -34.61269371328926],
     [-58.367358335852394, -34.612739598266955],
     [-58.367791254572616, -34.61277338688929],
     [-58.36779627676861, -34.61270141817625],
     [-58.36827961571449, -34.612739469675546],
     [-58.368577548348355, -34.61275561555945],
     [-58.36876288333437, -34.6127656176662],
     [-58.36898492763181, -34.61277761954793],
     [-58.369182016417604, -34.61278833427922],
     [-58.36993084735887, -34.612833272672184],
     [-58.37021446989456, -34.612850248756374],
     [-58.37062159237514, -34.61287421893812],
     [-58.371326136387104, -34.612915594168996],
     [-58.37133768103008, -34.612718417550546],
     [-58.37139189290475, -34.61174922204437],
     [-58.37145105357084, -34.61069312766668],
     [-58.37145704030182, -34.61059291973977],
     [-58.37158530565812, -34.61060083258812],
     [-58.37285236044379, -34.61069205498249],
     [-58.372917550894435, -34.60995089733264],
     [-58.37290453798959, -34.60953785483457],
     [-58.372902561289514, -34.60947517659977],
     [-58.372899597685354, -34.60937982120371],
     [-58.37290518810941, -34.60909221635124],
     [-58.37290780082882, -34.60895968152224],
     [-58.372911135030705, -34.6087898932657],
     [-58.372914383286904, -34.60862080917467],
     [-58.372921710284544, -34.6084606014236],
     [-58.37258853573745, -34.60843958091331],
     [-58.3715817739526, -34.60837601555499],
     [-58.37032165390922, -34.60828555986857],
     [-58.37033117733972, -34.60814612882323],
     [-58.37022779368164, -34.60803183581902],
     [-58.37016158384435, -34.607955887379326],
     [-58.37002794613998, -34.60783653943933],
     [-58.369986171829574, -34.607810584548126],
     [-58.36970759814363, -34.6076374801351],
     [-58.369598182056855, -34.6072371407795],
     [-58.369596379644555, -34.60721837039159],
     [-58.369250219655356, -34.606999457438356],
     [-58.369250104272254, -34.60699944784988],
     [-58.369250220559245, -34.606998650618706],
     [-58.3692483828163, -34.6069993047951],
     [-58.36906713137574, -34.60697646913866],
     [-58.36884276736141, -34.60694864073262],
     [-58.368769835813715, -34.6069705567005]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 383.0,
   'VIVIEND': 345.0,
   'HOGARES': 196.0,
   'HOGARES_': 48.0,
   'AREA_KM': 0.01656808976604,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37278324192131, -34.611836383137856],
     [-58.37139189290475, -34.61174922204437],
     [-58.37133768103008, -34.61271841755056],
     [-58.371326136387104, -34.612915594169],
     [-58.371581993667824, -34.61293064484659],
     [-58.372719891360774, -34.61300127889669],
     [-58.37272987316289, -34.612828537882386],
     [-58.37278324192131, -34.611836383137856]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 70.0,
   'VIVIEND': 148.0,
   'HOGARES': 39.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.01672777940397,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3741905217555, -34.61192368077018],
     [-58.37405024428777, -34.61191569150961],
     [-58.37278324192131, -34.611836383137856],
     [-58.37272987316289, -34.612828537882386],
     [-58.372719891360774, -34.61300127889669],
     [-58.37300334401322, -34.61301888218232],
     [-58.37411772639765, -34.61309765500819],
     [-58.37412787036141, -34.61292991405262],
     [-58.3741905217555, -34.61192368077018]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 484.0,
   'VIVIEND': 290.0,
   'HOGARES': 226.0,
   'HOGARES_': 123.0,
   'AREA_KM': 0.050715596932353,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37411772639765, -34.61309765500819],
     [-58.374046726396756, -34.61426346117647],
     [-58.37404126383572, -34.61435402156197],
     [-58.3739799581441, -34.615372931530864],
     [-58.37544012444596, -34.615447084042884],
     [-58.37549024357421, -34.61443802460332],
     [-58.37549501650698, -34.614353801756415],
     [-58.37556061799429, -34.61319961073641],
     [-58.37560887599668, -34.61201244896647],
     [-58.3741905217555, -34.61192368077018],
     [-58.37412787036141, -34.61292991405262],
     [-58.37411772639765, -34.61309765500819]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 698.0,
   'VIVIEND': 424.0,
   'HOGARES': 293.0,
   'HOGARES_': 81.0,
   'AREA_KM': 0.032605520833321,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37265253414115, -34.61416750948277],
     [-58.3725874246895, -34.61530134675714],
     [-58.37280027716231, -34.61531305321277],
     [-58.3739799581441, -34.615372931530864],
     [-58.37404126383572, -34.61435402156197],
     [-58.374046726396756, -34.61426346117647],
     [-58.37411772639765, -34.61309765500819],
     [-58.37300334401322, -34.61301888218232],
     [-58.372719891360774, -34.61300127889669],
     [-58.37265947870516, -34.61404687950462],
     [-58.37265253414115, -34.61416750948277]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 476.0,
   'VIVIEND': 365.0,
   'HOGARES': 215.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.075722461390027,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36678062245984, -34.61262597517016],
     [-58.36653132930922, -34.61260775054957],
     [-58.36639362441176, -34.61383835952285],
     [-58.367224296792465, -34.61390352016807],
     [-58.368237236883, -34.61398290108129],
     [-58.368458428815785, -34.613998213156364],
     [-58.368680728074665, -34.61401359610709],
     [-58.36891972118102, -34.61403011825917],
     [-58.369059914623065, -34.61403980351321],
     [-58.36988080218244, -34.61402247288482],
     [-58.37007952181044, -34.61402473661212],
     [-58.37014144596657, -34.61402548784176],
     [-58.370324152163654, -34.614027598173806],
     [-58.37052661298788, -34.61403592040888],
     [-58.371123178467826, -34.614060454439375],
     [-58.37125868993804, -34.61406780968364],
     [-58.371402207775795, -34.61407559330899],
     [-58.37244037198967, -34.61415031026336],
     [-58.37265253414115, -34.61416750948277],
     [-58.37265947870516, -34.61404687950462],
     [-58.372719891360774, -34.61300127889669],
     [-58.371581993667824, -34.61293064484659],
     [-58.371326136387104, -34.612915594169],
     [-58.37062159237514, -34.61287421893811],
     [-58.37021446989456, -34.612850248756374],
     [-58.36993084735889, -34.6128332726722],
     [-58.369182016417604, -34.61278833427924],
     [-58.368984927631836, -34.612777619547934],
     [-58.36876288333438, -34.61276561766621],
     [-58.36857754834837, -34.61275561555945],
     [-58.36827961571449, -34.612739469675546],
     [-58.367796276768615, -34.612701418176265],
     [-58.367791254572616, -34.612773386889295],
     [-58.367358335852394, -34.612739598266955],
     [-58.366769045595305, -34.61269371328926],
     [-58.36678062245984, -34.61262597517016]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 411.0,
   'VIVIEND': 374.0,
   'HOGARES': 196.0,
   'HOGARES_': 111.0,
   'AREA_KM': 0.086896508016095,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.366138483901324, -34.6160715617538],
     [-58.366972080210516, -34.61613172637395],
     [-58.36798360632076, -34.61620469976026],
     [-58.36821807277329, -34.6162241056883],
     [-58.368545250885035, -34.61623936023361],
     [-58.3688956702333, -34.6162652567277],
     [-58.36965099539089, -34.616307533270955],
     [-58.369750650482715, -34.61631366564103],
     [-58.36996859892126, -34.61634073319188],
     [-58.370059269699766, -34.61523311441308],
     [-58.37014144596657, -34.61402548784176],
     [-58.37007952181044, -34.61402473661212],
     [-58.36988080218244, -34.61402247288482],
     [-58.369059914623065, -34.61403980351321],
     [-58.36891972118102, -34.61403011825917],
     [-58.368680728074665, -34.61401359610709],
     [-58.368458428815785, -34.613998213156364],
     [-58.368237236883, -34.61398290108129],
     [-58.367224296792465, -34.61390352016807],
     [-58.36639362441176, -34.61383835952285],
     [-58.36625903432985, -34.615023617958045],
     [-58.366138483901324, -34.6160715617538]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_14_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 521.0,
   'VIVIEND': 354.0,
   'HOGARES': 246.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.030325144150421,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37265253414115, -34.61416750948277],
     [-58.37244037198967, -34.61415031026336],
     [-58.371402207775795, -34.61407559330899],
     [-58.37125868993804, -34.61406780968364],
     [-58.371123178467826, -34.614060454439375],
     [-58.37052661298788, -34.61403592040888],
     [-58.370324152163654, -34.614027598173806],
     [-58.37014144596657, -34.61402548784176],
     [-58.370059269699766, -34.61523311441308],
     [-58.370315745329144, -34.61523443567625],
     [-58.37096437266148, -34.61525140418506],
     [-58.37119119661072, -34.615261011254624],
     [-58.3713277339727, -34.615266747456424],
     [-58.37240557597769, -34.61529135303994],
     [-58.3725874246895, -34.61530134675714],
     [-58.37265253414115, -34.61416750948277]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 697.0,
   'VIVIEND': 434.0,
   'HOGARES': 170.0,
   'HOGARES_': 36.0,
   'AREA_KM': 0.083138459562236,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38137402854804, -34.60890484323811],
     [-58.381195945909795, -34.60888916084096],
     [-58.38074659752118, -34.60886132430171],
     [-58.380290606254476, -34.60883312950404],
     [-58.38011643637622, -34.608823082042996],
     [-58.379894991860375, -34.60881645300228],
     [-58.37875901140515, -34.60875328163636],
     [-58.37862069858821, -34.60874452432515],
     [-58.37721270035839, -34.608657981516785],
     [-58.37718475439466, -34.6092483913623],
     [-58.37715628686734, -34.609848660046545],
     [-58.37845434931223, -34.609930620548056],
     [-58.3785641311625, -34.60993879498897],
     [-58.37855932251647, -34.610061750835406],
     [-58.37853132983006, -34.610960615043176],
     [-58.37852405339355, -34.61108117477156],
     [-58.37868672899226, -34.611091287014276],
     [-58.37977427093759, -34.611159707888866],
     [-58.379996903092476, -34.6111774648426],
     [-58.38062860300618, -34.611228032835626],
     [-58.38126456214638, -34.611278952517736],
     [-58.38130661888916, -34.61033960366864],
     [-58.381316623189136, -34.610125241679214],
     [-58.38133280591474, -34.609776516050424],
     [-58.38134394296379, -34.6095358868834],
     [-58.38137402854804, -34.60890484323811]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_10',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 625.0,
   'VIVIEND': 384.0,
   'HOGARES': 291.0,
   'HOGARES_': 47.0,
   'AREA_KM': 0.033377954853725,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38096822838368, -34.61693459044007],
     [-58.38058339536882, -34.61691602195852],
     [-58.3801472004795, -34.616894882279894],
     [-58.379721056690265, -34.616874311264915],
     [-58.37952301873497, -34.61686473968316],
     [-58.378390580931224, -34.61681227163944],
     [-58.37824680102762, -34.61680562282539],
     [-58.37817651338339, -34.61799467089408],
     [-58.37835206324861, -34.61800655308252],
     [-58.37926695017999, -34.6180688729939],
     [-58.37944658871725, -34.61808117894317],
     [-58.37967794146832, -34.61808535073581],
     [-58.380087238264686, -34.61809274134598],
     [-58.380536400048236, -34.618100861671735],
     [-58.38091460571784, -34.61810773559898],
     [-58.38095853696678, -34.617175572362676],
     [-58.38096822838368, -34.61693459044007]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_11',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 554.0,
   'VIVIEND': 271.0,
   'HOGARES': 281.0,
   'HOGARES_': 109.0,
   'AREA_KM': 0.016973527126331,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37824680102762, -34.61680562282539],
     [-58.37682893495066, -34.616739914053625],
     [-58.37676155449785, -34.61789875177505],
     [-58.37817651338339, -34.61799467089408],
     [-58.37824680102762, -34.61680562282539]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 662.0,
   'VIVIEND': 500.0,
   'HOGARES': 249.0,
   'HOGARES_': 34.0,
   'AREA_KM': 0.082628927038267,
   'partidas': 26.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.375667532816706, -34.610898464206954],
     [-58.3756189019629, -34.61170998795188],
     [-58.37560887599668, -34.61201244896647],
     [-58.37610951204109, -34.61204414369694],
     [-58.376878694042894, -34.61209229336287],
     [-58.37704963406372, -34.612101920638175],
     [-58.37829808468383, -34.61217265065106],
     [-58.37845718374539, -34.61218395792175],
     [-58.37852405339355, -34.61108117477156],
     [-58.37853132983006, -34.610960615043176],
     [-58.37855932251647, -34.610061750835406],
     [-58.3785641311625, -34.60993879498897],
     [-58.37845434931223, -34.609930620548056],
     [-58.37715628686734, -34.609848660046545],
     [-58.37718475439466, -34.6092483913623],
     [-58.37721270035839, -34.608657981516785],
     [-58.37580299964116, -34.6085733226789],
     [-58.375771396009235, -34.60914957450175],
     [-58.3757611514945, -34.60933569612482],
     [-58.375736533792164, -34.60974645797951],
     [-58.375667532816706, -34.610898464206954]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 418.0,
   'VIVIEND': 435.0,
   'HOGARES': 200.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.064885629316956,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38062860300618, -34.611228032835626],
     [-58.379996903092476, -34.6111774648426],
     [-58.37977427093759, -34.611159707888866],
     [-58.37868672899226, -34.611091287014276],
     [-58.37852405339355, -34.61108117477156],
     [-58.37845718374539, -34.61218395792175],
     [-58.37845016710418, -34.612300081131515],
     [-58.378426629657824, -34.61317127169812],
     [-58.37842129608059, -34.61339183381473],
     [-58.37868916341224, -34.61340969481655],
     [-58.379644547587354, -34.61346943412329],
     [-58.3798854998225, -34.613486569939084],
     [-58.38029696712899, -34.613515792532695],
     [-58.38062155892622, -34.61353882849397],
     [-58.38079514025285, -34.6135511283842],
     [-58.381157974697416, -34.61357693509572],
     [-58.38117882810449, -34.61333117168754],
     [-58.381200688566096, -34.61292639309758],
     [-58.381224457386, -34.612486122398266],
     [-58.38122372491582, -34.61236400787252],
     [-58.381222474367824, -34.61216189210404],
     [-58.38125437621206, -34.611504582073565],
     [-58.38126456214638, -34.611278952517736],
     [-58.38062860300618, -34.611228032835626]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 759.0,
   'VIVIEND': 685.0,
   'HOGARES': 335.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.051671315502524,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37560887599668, -34.61201244896647],
     [-58.37556061799429, -34.61319961073641],
     [-58.37549501650698, -34.614353801756415],
     [-58.37693879551355, -34.6144439107032],
     [-58.3769850335092, -34.61329766313911],
     [-58.37717573377361, -34.61331075486141],
     [-58.37814576326567, -34.613373544372486],
     [-58.37842129608059, -34.61339183381473],
     [-58.378426629657824, -34.61317127169812],
     [-58.37845016710418, -34.612300081131515],
     [-58.37845718374539, -34.61218395792175],
     [-58.37829808468383, -34.61217265065106],
     [-58.37704963406372, -34.612101920638175],
     [-58.376878694042894, -34.61209229336287],
     [-58.37610951204109, -34.61204414369694],
     [-58.37560887599668, -34.61201244896647]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 464.0,
   'VIVIEND': 221.0,
   'HOGARES': 187.0,
   'HOGARES_': 41.0,
   'AREA_KM': 0.048767000304461,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37842129608059, -34.61339183381473],
     [-58.37814576326567, -34.613373544372486],
     [-58.37717573377361, -34.61331075486141],
     [-58.3769850335092, -34.61329766313911],
     [-58.37693879551355, -34.6144439107032],
     [-58.37723341166142, -34.614462286664455],
     [-58.37823709012769, -34.61453523997054],
     [-58.37838554549386, -34.614547314620495],
     [-58.37852556893495, -34.61455860861611],
     [-58.379608388999415, -34.61462392908159],
     [-58.37982796761649, -34.61463795182608],
     [-58.38023101130332, -34.6146636477538],
     [-58.38068030483419, -34.614692260807914],
     [-58.381081815959455, -34.61471781204804],
     [-58.38113229564807, -34.61387945644637],
     [-58.381157974697416, -34.61357693509572],
     [-58.38079514025285, -34.6135511283842],
     [-58.38062155892622, -34.61353882849397],
     [-58.38029696712899, -34.613515792532695],
     [-58.3798854998225, -34.613486569939084],
     [-58.379644547587354, -34.61346943412329],
     [-58.37868916341224, -34.61340969481655],
     [-58.37842129608059, -34.61339183381473]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 804.0,
   'VIVIEND': 480.0,
   'HOGARES': 305.0,
   'HOGARES_': 111.0,
   'AREA_KM': 0.044762142319377,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.381081815959455, -34.61471781204804],
     [-58.38068030483419, -34.614692260807914],
     [-58.38023101130332, -34.6146636477538],
     [-58.37982796761649, -34.61463795182608],
     [-58.379608388999415, -34.61462392908159],
     [-58.37852556893495, -34.61455860861611],
     [-58.37838554549386, -34.614547314620495],
     [-58.37823709012769, -34.61453523997054],
     [-58.37723341166142, -34.614462286664455],
     [-58.37693879551355, -34.6144439107032],
     [-58.37688751119601, -34.61552621014381],
     [-58.37718928283445, -34.61554797156179],
     [-58.378155248629014, -34.615611814495175],
     [-58.37831512420427, -34.61561981259366],
     [-58.37843224131965, -34.61562573867991],
     [-58.379538855190134, -34.61567635772894],
     [-58.37976866186276, -34.61568672554095],
     [-58.38018866813449, -34.61570574292599],
     [-58.38063047990568, -34.615725689038804],
     [-58.38101633077726, -34.61574306085714],
     [-58.38102314088994, -34.615573556576564],
     [-58.38106900230867, -34.61492935504365],
     [-58.381081815959455, -34.61471781204804]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 577.0,
   'VIVIEND': 365.0,
   'HOGARES': 270.0,
   'HOGARES_': 58.0,
   'AREA_KM': 0.016013136402018,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37693879551355, -34.6144439107032],
     [-58.37549501650698, -34.614353801756415],
     [-58.37549024357421, -34.61443802460332],
     [-58.37544012444596, -34.615447084042884],
     [-58.37662023517679, -34.61550693713902],
     [-58.37688751119601, -34.61552621014381],
     [-58.37693879551355, -34.6144439107032]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 818.0,
   'VIVIEND': 421.0,
   'HOGARES': 310.0,
   'HOGARES_': 114.0,
   'AREA_KM': 0.018028145842742,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37688751119601, -34.61552621014381],
     [-58.37662023517679, -34.61550693713902],
     [-58.37544012444596, -34.615447084042884],
     [-58.37543629581924, -34.61552419479653],
     [-58.3753797321879, -34.61666670151161],
     [-58.37555817649175, -34.61667718132701],
     [-58.37666658660233, -34.61673240522642],
     [-58.37682893495066, -34.616739914053625],
     [-58.37683500585535, -34.61663484681161],
     [-58.37688751119601, -34.61552621014381]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_15_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 872.0,
   'VIVIEND': 527.0,
   'HOGARES': 352.0,
   'HOGARES_': 80.0,
   'AREA_KM': 0.050216402569354,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37831512420427, -34.61561981259366],
     [-58.378155248629014, -34.615611814495175],
     [-58.37718928283445, -34.61554797156179],
     [-58.37688751119601, -34.61552621014381],
     [-58.37683500585535, -34.61663484681161],
     [-58.37682893495066, -34.616739914053625],
     [-58.37824680102762, -34.61680562282539],
     [-58.378390580931224, -34.61681227163944],
     [-58.37952301873497, -34.61686473968316],
     [-58.379721056690265, -34.616874311264915],
     [-58.3801472004795, -34.616894882279894],
     [-58.38058339536882, -34.61691602195852],
     [-58.38096822838368, -34.61693459044007],
     [-58.38101633077726, -34.61574306085714],
     [-58.38063047990568, -34.615725689038804],
     [-58.38018866813449, -34.61570574292599],
     [-58.37976866186276, -34.61568672554095],
     [-58.379538855190134, -34.61567635772894],
     [-58.37843224131965, -34.61562573867991],
     [-58.37831512420427, -34.61561981259366]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 538.0,
   'VIVIEND': 348.0,
   'HOGARES': 189.0,
   'HOGARES_': 61.0,
   'AREA_KM': 0.036135457406942,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3828676883421, -34.60902449308644],
     [-58.38270748926304, -34.60901128941349],
     [-58.38157169945653, -34.60892229898613],
     [-58.38137402854804, -34.60890484323811],
     [-58.38134394296379, -34.6095358868834],
     [-58.38133280591474, -34.609776516050424],
     [-58.381316623189136, -34.610125241679214],
     [-58.38130661888916, -34.61033960366864],
     [-58.38126456214638, -34.611278952517736],
     [-58.38150252538307, -34.611297984576446],
     [-58.382767065235804, -34.6113695950715],
     [-58.38277383868263, -34.611234245861475],
     [-58.3828174086001, -34.61020905140463],
     [-58.38284154828088, -34.609638567650364],
     [-58.3828676883421, -34.60902449308644]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_10',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 591.0,
   'VIVIEND': 438.0,
   'HOGARES': 291.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.016835364293798,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39119772749437, -34.61194631268471],
     [-58.39093966356458, -34.61192137215432],
     [-58.38976719566153, -34.611836591428855],
     [-58.389771730542336, -34.61200793410341],
     [-58.38975879537878, -34.61287103463834],
     [-58.389760123166255, -34.61300850175071],
     [-58.39090910197235, -34.61308918416627],
     [-58.39115984795675, -34.613109754222165],
     [-58.391169480768866, -34.61290215192622],
     [-58.39118863914079, -34.61211518250388],
     [-58.39119772749437, -34.61194631268471]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_11',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 464.0,
   'VIVIEND': 300.0,
   'HOGARES': 217.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.017145494345958,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38976719566153, -34.611836591428855],
     [-58.38834262394573, -34.61173361767241],
     [-58.38832543994213, -34.61190036964611],
     [-58.388333952898954, -34.612669820092165],
     [-58.38834455248625, -34.61291426589586],
     [-58.389526239440286, -34.61299202348539],
     [-58.389760123166255, -34.61300850175071],
     [-58.38975879537878, -34.61287103463834],
     [-58.389771730542336, -34.61200793410341],
     [-58.38976719566153, -34.611836591428855]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_12',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 364.0,
   'VIVIEND': 204.0,
   'HOGARES': 139.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.017514956907555,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38834262394573, -34.61173361767241],
     [-58.38688177303434, -34.61162799907883],
     [-58.386873533761765, -34.61179024931416],
     [-58.38688818032239, -34.6128251291716],
     [-58.38703596067616, -34.612828178693064],
     [-58.38834455248625, -34.61291426589586],
     [-58.388333952898954, -34.612669820092165],
     [-58.38832543994213, -34.61190036964611],
     [-58.38834262394573, -34.61173361767241]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 326.0,
   'VIVIEND': 292.0,
   'HOGARES': 164.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.016811721309289,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38422364021175, -34.61030623274624],
     [-58.382935710288656, -34.61021560775323],
     [-58.3828174086001, -34.61020905140463],
     [-58.38277383868263, -34.611234245861475],
     [-58.382767065235804, -34.6113695950715],
     [-58.384219495875406, -34.611451876969404],
     [-58.38422413956024, -34.61131441360894],
     [-58.38422119675868, -34.61045897941067],
     [-58.38422364021175, -34.61030623274624]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 945.0,
   'VIVIEND': 683.0,
   'HOGARES': 413.0,
   'HOGARES_': 110.0,
   'AREA_KM': 0.038548179414988,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385679080613215, -34.60923221817486],
     [-58.38554672836514, -34.60922354290098],
     [-58.38446687589992, -34.60915151639117],
     [-58.384269288212096, -34.60913491046747],
     [-58.38411096265077, -34.60912156899491],
     [-58.38301119477922, -34.60903627718015],
     [-58.3828676883421, -34.60902449308644],
     [-58.38284154828088, -34.609638567650364],
     [-58.3828174086001, -34.61020905140463],
     [-58.382935710288656, -34.61021560775323],
     [-58.38422364021175, -34.61030623274624],
     [-58.384225542325204, -34.610185669199694],
     [-58.384244279081734, -34.60973476053788],
     [-58.38565774441894, -34.60983171873441],
     [-58.38565302230321, -34.60996453419409],
     [-58.38562723307811, -34.610405156797015],
     [-58.38638268980891, -34.61045605481216],
     [-58.38696330988604, -34.61047705066615],
     [-58.3868138567077, -34.6103512521248],
     [-58.386705109427126, -34.610234422525245],
     [-58.38668652056051, -34.61007025411735],
     [-58.38669076182201, -34.60990250833659],
     [-58.38670389174561, -34.609701246571234],
     [-58.38672282747778, -34.60957808791588],
     [-58.386780837425206, -34.60947762989671],
     [-58.38690670264203, -34.60940834114496],
     [-58.387059712220875, -34.60936766097795],
     [-58.38672101706718, -34.609321464073],
     [-58.38663270836509, -34.60930309897362],
     [-58.385679080613215, -34.60923221817486]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 573.0,
   'VIVIEND': 610.0,
   'HOGARES': 348.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.008246953191115,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38565774441894, -34.60983171873441],
     [-58.384244279081734, -34.60973476053788],
     [-58.384225542325204, -34.610185669199694],
     [-58.38422364021175, -34.61030623274624],
     [-58.38435335314997, -34.61031540072357],
     [-58.385465751125686, -34.6103942799066],
     [-58.38562723307811, -34.610405156797015],
     [-58.38565302230321, -34.60996453419409],
     [-58.38565774441894, -34.60983171873441]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 477.0,
   'VIVIEND': 291.0,
   'HOGARES': 208.0,
   'HOGARES_': 49.0,
   'AREA_KM': 0.015882502688565,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38562723307811, -34.610405156797015],
     [-58.385465751125686, -34.6103942799066],
     [-58.38435335314997, -34.61031540072357],
     [-58.38422364021175, -34.61030623274624],
     [-58.38422119675868, -34.61045897941067],
     [-58.38422413956024, -34.61131441360894],
     [-58.384219495875406, -34.611451876969404],
     [-58.38437152727376, -34.611460495895024],
     [-58.38524929729924, -34.611520634425496],
     [-58.385557706342524, -34.61153597083911],
     [-58.38556014849064, -34.61138202697581],
     [-58.38561866562908, -34.61055135024892],
     [-58.38562723307811, -34.610405156797015]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 559.0,
   'VIVIEND': 240.0,
   'HOGARES': 228.0,
   'HOGARES_': 47.0,
   'AREA_KM': 0.015420599177599,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38638268980891, -34.61045605481216],
     [-58.38562723307811, -34.610405156797015],
     [-58.38561866562908, -34.61055135024892],
     [-58.38556014849064, -34.61138202697581],
     [-58.385557706342524, -34.61153597083911],
     [-58.38572251492563, -34.61154410319632],
     [-58.38688177303434, -34.61162799907883],
     [-58.386891573994816, -34.61143434100174],
     [-58.38696330988604, -34.61047705066615],
     [-58.38638268980891, -34.61045605481216]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 1074.0,
   'VIVIEND': 687.0,
   'HOGARES': 475.0,
   'HOGARES_': 98.0,
   'AREA_KM': 0.036930437410027,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38808306696372, -34.60947582760611],
     [-58.3879107751811, -34.60945846839065],
     [-58.38757649700685, -34.60942474150267],
     [-58.38720440412729, -34.60938845506453],
     [-58.387059712220875, -34.60936766097795],
     [-58.38690670264203, -34.60940834114496],
     [-58.386780837425206, -34.60947762989671],
     [-58.38672282747778, -34.60957808791588],
     [-58.38670389174561, -34.609701246571234],
     [-58.38669076182201, -34.60990250833659],
     [-58.38668652056051, -34.61007025411735],
     [-58.386705109427126, -34.610234422525245],
     [-58.3868138567077, -34.6103512521248],
     [-58.38696330988604, -34.61047705066615],
     [-58.386891573994816, -34.61143434100174],
     [-58.38688177303434, -34.61162799907883],
     [-58.38834262394573, -34.61173361767241],
     [-58.38836135473701, -34.611551514347305],
     [-58.388427412543955, -34.61073450300044],
     [-58.388452895085976, -34.610526206256374],
     [-58.388526166935286, -34.609927793198935],
     [-58.38855379399115, -34.609701891870564],
     [-58.38857541470908, -34.60952549449922],
     [-58.38808306696372, -34.60947582760611]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 546.0,
   'VIVIEND': 299.0,
   'HOGARES': 220.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.017222404822968,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3898203828644, -34.61062456712857],
     [-58.38941054524712, -34.610594814240045],
     [-58.388452895085976, -34.610526206256374],
     [-58.388427412543955, -34.61073450300044],
     [-58.38836135473701, -34.611551514347305],
     [-58.38834262394573, -34.61173361767241],
     [-58.38976719566153, -34.611836591428855],
     [-58.38976299121884, -34.611677009643586],
     [-58.3898203828644, -34.61062456712857]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_16_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 382.0,
   'VIVIEND': 203.0,
   'HOGARES': 160.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.046373155544788,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3898203828644, -34.61062456712857],
     [-58.38976299121884, -34.611677009643586],
     [-58.38976719566153, -34.611836591428855],
     [-58.39093966356458, -34.61192137215432],
     [-58.39119772749437, -34.61194631268471],
     [-58.39120958504324, -34.61172659883604],
     [-58.39127818999982, -34.61078719167143],
     [-58.39135472263901, -34.60973884402561],
     [-58.39081296082203, -34.60970077909669],
     [-58.3899559033986, -34.60964048166819],
     [-58.38916127608873, -34.60958458211307],
     [-58.38895866450932, -34.60956417789406],
     [-58.38857541470908, -34.60952549449922],
     [-58.38855379399115, -34.609701891870564],
     [-58.388526166935286, -34.609927793198935],
     [-58.388452895085976, -34.610526206256374],
     [-58.38941054524712, -34.610594814240045],
     [-58.3898203828644, -34.61062456712857]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 888.0,
   'VIVIEND': 544.0,
   'HOGARES': 389.0,
   'HOGARES_': 74.0,
   'AREA_KM': 0.049154254328139,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384219495875406, -34.611451876969404],
     [-58.382767065235804, -34.6113695950715],
     [-58.38271148733894, -34.612480204928914],
     [-58.38403035532256, -34.61258782425386],
     [-58.384171993294274, -34.61260052127809],
     [-58.38541863059742, -34.612712445327645],
     [-58.3855589040066, -34.6127274638469],
     [-58.38569636687067, -34.612742198737685],
     [-58.38674389225889, -34.612822081645426],
     [-58.38688818032239, -34.6128251291716],
     [-58.386873533761765, -34.61179024931416],
     [-58.38688177303434, -34.61162799907883],
     [-58.38572251492563, -34.61154410319632],
     [-58.385557706342524, -34.61153597083911],
     [-58.38524929729924, -34.611520634425496],
     [-58.38437152727376, -34.611460495895024],
     [-58.384219495875406, -34.611451876969404]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_10',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 574.0,
   'VIVIEND': 363.0,
   'HOGARES': 279.0,
   'HOGARES_': 37.0,
   'AREA_KM': 0.028009142169066,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383962560773135, -34.61492639766644],
     [-58.38378590364188, -34.614920438390016],
     [-58.38267497204249, -34.61484999566405],
     [-58.382515443716514, -34.61483629922043],
     [-58.382497906691974, -34.61500305004733],
     [-58.38247096370035, -34.61582705519992],
     [-58.383785162358485, -34.6158837580512],
     [-58.38388337160025, -34.615888117360086],
     [-58.38516622570399, -34.61594478508006],
     [-58.38530609016878, -34.615947338705084],
     [-58.38530837557204, -34.6157793806264],
     [-58.38535756729552, -34.61499884009926],
     [-58.385182450016494, -34.614985489375506],
     [-58.3841055730147, -34.61493120824391],
     [-58.383962560773135, -34.61492639766644]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_11',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 474.0,
   'VIVIEND': 276.0,
   'HOGARES': 218.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.014855281713065,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.382515443716514, -34.61483629922043],
     [-58.381284360212504, -34.61473076442452],
     [-58.381081815959455, -34.61471781204804],
     [-58.38106900230867, -34.61492935504365],
     [-58.38102314088994, -34.615573556576564],
     [-58.38101633077726, -34.61574306085714],
     [-58.38120848961517, -34.61575178100825],
     [-58.382324033206665, -34.615820690812285],
     [-58.38247096370035, -34.61582705519992],
     [-58.382497906691974, -34.61500305004733],
     [-58.382515443716514, -34.61483629922043]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 657.0,
   'VIVIEND': 467.0,
   'HOGARES': 303.0,
   'HOGARES_': 89.0,
   'AREA_KM': 0.016742791783601,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.382767065235804, -34.6113695950715],
     [-58.38150252538307, -34.611297984576446],
     [-58.38126456214638, -34.611278952517736],
     [-58.38125437621206, -34.611504582073565],
     [-58.381222474367824, -34.61216189210404],
     [-58.38122372491582, -34.61236400787252],
     [-58.38141638314069, -34.61237674215806],
     [-58.38259258926031, -34.61247047892202],
     [-58.38271148733894, -34.612480204928914],
     [-58.382767065235804, -34.6113695950715]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 720.0,
   'VIVIEND': 423.0,
   'HOGARES': 324.0,
   'HOGARES_': 46.0,
   'AREA_KM': 0.035200193421006,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.381157974697416, -34.61357693509572],
     [-58.38113229564807, -34.61387945644637],
     [-58.381081815959455, -34.61471781204804],
     [-58.381284360212504, -34.61473076442452],
     [-58.382515443716514, -34.61483629922043],
     [-58.38253598882634, -34.61464159231499],
     [-58.38261962106001, -34.61368043961159],
     [-58.38263822438653, -34.6134671396234],
     [-58.38270506013676, -34.6126095683525],
     [-58.38271148733894, -34.612480204928914],
     [-58.38259258926031, -34.61247047892202],
     [-58.38141638314069, -34.61237674215806],
     [-58.38122372491582, -34.61236400787252],
     [-58.381224457386, -34.612486122398266],
     [-58.381200688566096, -34.61292639309758],
     [-58.38117882810449, -34.61333117168754],
     [-58.381157974697416, -34.61357693509572]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 586.0,
   'VIVIEND': 378.0,
   'HOGARES': 287.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.017643705333501,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384171993294274, -34.61260052127809],
     [-58.38403035532256, -34.61258782425386],
     [-58.38271148733894, -34.612480204928914],
     [-58.38270506013676, -34.6126095683525],
     [-58.38263822438653, -34.6134671396234],
     [-58.38261962106001, -34.61368043961159],
     [-58.384059041020414, -34.6137822925554],
     [-58.38407713015029, -34.613568428630806],
     [-58.38415618019182, -34.61274966768775],
     [-58.384171993294274, -34.61260052127809]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 577.0,
   'VIVIEND': 318.0,
   'HOGARES': 256.0,
   'HOGARES_': 33.0,
   'AREA_KM': 0.033245340528108,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38547827980529, -34.61388129881213],
     [-58.38425255382113, -34.61379600883901],
     [-58.384059041020414, -34.6137822925554],
     [-58.38261962106001, -34.61368043961159],
     [-58.38253598882634, -34.61464159231499],
     [-58.382515443716514, -34.61483629922043],
     [-58.38267497204249, -34.61484999566405],
     [-58.38378590364188, -34.614920438390016],
     [-58.383962560773135, -34.61492639766644],
     [-58.3841055730147, -34.61493120824391],
     [-58.385182450016494, -34.614985489375506],
     [-58.38535756729552, -34.61499884009926],
     [-58.385446775975765, -34.61414388736755],
     [-58.38547827980529, -34.61388129881213]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 759.0,
   'VIVIEND': 457.0,
   'HOGARES': 367.0,
   'HOGARES_': 127.0,
   'AREA_KM': 0.016928539024631,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3855589040066, -34.6127274638469],
     [-58.38541863059742, -34.612712445327645],
     [-58.384171993294274, -34.61260052127809],
     [-58.38415618019182, -34.61274966768775],
     [-58.38407713015029, -34.613568428630806],
     [-58.384059041020414, -34.6137822925554],
     [-58.38425255382113, -34.61379600883901],
     [-58.38547827980529, -34.61388129881213],
     [-58.38550875314637, -34.613627512498624],
     [-58.38555782315524, -34.61288302827306],
     [-58.3855589040066, -34.6127274638469]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 615.0,
   'VIVIEND': 477.0,
   'HOGARES': 323.0,
   'HOGARES_': 81.0,
   'AREA_KM': 0.016175620888307,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38688818032239, -34.6128251291716],
     [-58.38674389225889, -34.612822081645426],
     [-58.38569636687067, -34.612742198737685],
     [-58.3855589040066, -34.6127274638469],
     [-58.38555782315524, -34.61288302827306],
     [-58.38550875314637, -34.613627512498624],
     [-58.38547827980529, -34.61388129881213],
     [-58.38576284351005, -34.61390105627985],
     [-58.386917536495815, -34.61398304750441],
     [-58.38692380751585, -34.6137372740596],
     [-58.38689034222263, -34.61297682234137],
     [-58.38688818032239, -34.6128251291716]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 597.0,
   'VIVIEND': 316.0,
   'HOGARES': 267.0,
   'HOGARES_': 80.0,
   'AREA_KM': 0.017209118419102,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.386917536495815, -34.61398304750441],
     [-58.38576284351005, -34.61390105627985],
     [-58.38547827980529, -34.61388129881213],
     [-58.385446775975765, -34.61414388736755],
     [-58.38535756729552, -34.61499884009926],
     [-58.38552808531433, -34.61501176512264],
     [-58.38679273955133, -34.615116996295974],
     [-58.386898615458286, -34.61512001990502],
     [-58.3869106527997, -34.61424684892369],
     [-58.386917536495815, -34.61398304750441]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_17_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 439.0,
   'VIVIEND': 309.0,
   'HOGARES': 239.0,
   'HOGARES_': 46.0,
   'AREA_KM': 0.014366458462667,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.386898615458286, -34.61512001990502],
     [-58.38679273955133, -34.615116996295974],
     [-58.38552808531433, -34.61501176512264],
     [-58.38535756729552, -34.61499884009926],
     [-58.38530837557204, -34.6157793806264],
     [-58.38530609016878, -34.615947338705084],
     [-58.38545217270539, -34.615950036953784],
     [-58.38673318375325, -34.61597499655325],
     [-58.38688684766779, -34.61597748653491],
     [-58.386898615458286, -34.61512001990502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 842.0,
   'VIVIEND': 496.0,
   'HOGARES': 442.0,
   'HOGARES_': 139.0,
   'AREA_KM': 0.016265495884908,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39115984795675, -34.613109754222165],
     [-58.39090910197235, -34.61308918416627],
     [-58.389760123166255, -34.61300850175071],
     [-58.389761680006195, -34.61317625102293],
     [-58.3897654938403, -34.61397731847153],
     [-58.3897691522164, -34.61417704115356],
     [-58.39083510724053, -34.61424647729558],
     [-58.391113280401804, -34.614271641113596],
     [-58.39115229864161, -34.613271582577],
     [-58.39115984795675, -34.613109754222165]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 735.0,
   'VIVIEND': 490.0,
   'HOGARES': 357.0,
   'HOGARES_': 48.0,
   'AREA_KM': 0.016836373385236,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389760123166255, -34.61300850175071],
     [-58.389526239440286, -34.61299202348539],
     [-58.38834455248625, -34.61291426589586],
     [-58.38835148027609, -34.61307349723879],
     [-58.38834578419531, -34.61382561474162],
     [-58.38835390052464, -34.614084918301884],
     [-58.3897691522164, -34.61417704115356],
     [-58.3897654938403, -34.61397731847153],
     [-58.389761680006195, -34.61317625102293],
     [-58.389760123166255, -34.61300850175071]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 642.0,
   'VIVIEND': 354.0,
   'HOGARES': 292.0,
   'HOGARES_': 78.0,
   'AREA_KM': 0.046432390017603,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38834455248625, -34.61291426589586],
     [-58.38703596067616, -34.612828178693064],
     [-58.38688818032239, -34.6128251291716],
     [-58.38689034222263, -34.61297682234137],
     [-58.38692380751585, -34.6137372740596],
     [-58.386917536495815, -34.61398304750441],
     [-58.3869106527997, -34.61424684892369],
     [-58.386898615458286, -34.61512001990502],
     [-58.38688684766779, -34.61597748653491],
     [-58.38706887633976, -34.61598048687404],
     [-58.38820175198679, -34.61601315611111],
     [-58.38837687976148, -34.61601769959652],
     [-58.38837693587424, -34.61585917681997],
     [-58.38837386880478, -34.61528642235369],
     [-58.38837246367997, -34.61514268755923],
     [-58.38837106508782, -34.61499162874273],
     [-58.388360111836924, -34.61428358622657],
     [-58.38835390052464, -34.614084918301884],
     [-58.38834578419531, -34.61382561474162],
     [-58.38835148027609, -34.61307349723879],
     [-58.38834455248625, -34.61291426589586]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 730.0,
   'VIVIEND': 436.0,
   'HOGARES': 341.0,
   'HOGARES_': 70.0,
   'AREA_KM': 0.027436561271665,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3897691522164, -34.61417704115356],
     [-58.38835390052464, -34.614084918301884],
     [-58.388360111836924, -34.61428358622657],
     [-58.38837106508782, -34.61499162874273],
     [-58.38837246367997, -34.61514268755923],
     [-58.38837386880478, -34.61528642235369],
     [-58.38837693587424, -34.61585917681997],
     [-58.38837687976148, -34.61601769959652],
     [-58.38856435858562, -34.616022461606654],
     [-58.38964875455637, -34.616069876826025],
     [-58.389785805515075, -34.61607573352486],
     [-58.389782744835955, -34.615484598633294],
     [-58.38978088162309, -34.61527748262205],
     [-58.389779559560964, -34.61513339577513],
     [-58.38977321963015, -34.61439606005821],
     [-58.3897691522164, -34.61417704115356]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 698.0,
   'VIVIEND': 362.0,
   'HOGARES': 274.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.025095769912916,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.391113280401804, -34.614271641113596],
     [-58.39083510724053, -34.61424647729558],
     [-58.3897691522164, -34.61417704115356],
     [-58.38977321963015, -34.61439606005821],
     [-58.389779559560964, -34.61513339577513],
     [-58.38978088162309, -34.61527748262205],
     [-58.389782744835955, -34.615484598633294],
     [-58.389785805515075, -34.61607573352486],
     [-58.39000215694107, -34.61608501766877],
     [-58.390835866182044, -34.61613332904225],
     [-58.39106166939243, -34.61614677184837],
     [-58.39106336473079, -34.61595810886742],
     [-58.391071656039266, -34.61562712428924],
     [-58.391079804154735, -34.615363605121956],
     [-58.391086724318875, -34.61514128284902],
     [-58.391103525767804, -34.61452156769078],
     [-58.391113280401804, -34.614271641113596]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 1180.0,
   'VIVIEND': 616.0,
   'HOGARES': 507.0,
   'HOGARES_': 68.0,
   'AREA_KM': 0.015471499673749,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39106166939243, -34.61614677184837],
     [-58.390835866182044, -34.61613332904225],
     [-58.39000215694107, -34.61608501766877],
     [-58.389785805515075, -34.61607573352486],
     [-58.38978637895201, -34.61619925630386],
     [-58.3897581314179, -34.617038403176785],
     [-58.389754207831615, -34.61723910715068],
     [-58.38991434229247, -34.617248146552924],
     [-58.39086560193438, -34.61731103499313],
     [-58.39107820444038, -34.61732524465025],
     [-58.39106044605512, -34.61628177256083],
     [-58.39106166939243, -34.61614677184837]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 734.0,
   'VIVIEND': 416.0,
   'HOGARES': 317.0,
   'HOGARES_': 67.0,
   'AREA_KM': 0.016071987645071,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389785805515075, -34.61607573352486],
     [-58.38964875455637, -34.616069876826025],
     [-58.38856435858562, -34.616022461606654],
     [-58.38837687976148, -34.61601769959652],
     [-58.388376733382614, -34.61618192659965],
     [-58.38844643366058, -34.617017893325546],
     [-58.388454039727414, -34.61718127994098],
     [-58.388690581941844, -34.61719064912087],
     [-58.38954782183997, -34.61722743415178],
     [-58.389754207831615, -34.61723910715068],
     [-58.3897581314179, -34.617038403176785],
     [-58.38978637895201, -34.61619925630386],
     [-58.389785805515075, -34.61607573352486]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 674.0,
   'VIVIEND': 368.0,
   'HOGARES': 301.0,
   'HOGARES_': 25.0,
   'AREA_KM': 0.017230745211937,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389754207831615, -34.61723910715068],
     [-58.38954782183997, -34.61722743415178],
     [-58.388690581941844, -34.61719064912087],
     [-58.388454039727414, -34.61718127994098],
     [-58.38846022381077, -34.61731536960704],
     [-58.388367476646614, -34.61844377546042],
     [-58.389526844311966, -34.61851518133109],
     [-58.38972897407262, -34.61852713351229],
     [-58.389754207831615, -34.61723910715068]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_18_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 650.0,
   'VIVIEND': 528.0,
   'HOGARES': 303.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.017631469936768,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39107820444038, -34.61732524465025],
     [-58.39086560193438, -34.61731103499313],
     [-58.38991434229247, -34.617248146552924],
     [-58.389754207831615, -34.61723910715068],
     [-58.38972897407262, -34.61852713351229],
     [-58.390813985129576, -34.618591299478766],
     [-58.39110001890855, -34.61860569319239],
     [-58.39107820444038, -34.61732524465025]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_1',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 892.0,
   'VIVIEND': 493.0,
   'HOGARES': 424.0,
   'HOGARES_': 89.0,
   'AREA_KM': 0.018117895548578,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38837687976148, -34.61601769959652],
     [-58.38820175198679, -34.61601315611111],
     [-58.38706887633976, -34.61598048687404],
     [-58.38688684766779, -34.61597748653491],
     [-58.38688208369192, -34.61700122673826],
     [-58.38689123155621, -34.61715186779613],
     [-58.3871104023207, -34.61715467987973],
     [-58.38820514668243, -34.61717133937495],
     [-58.388454039727414, -34.61718127994098],
     [-58.38844643366058, -34.617017893325546],
     [-58.388376733382614, -34.61618192659965],
     [-58.38837687976148, -34.61601769959652]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_2',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 1066.0,
   'VIVIEND': 641.0,
   'HOGARES': 498.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.019044751406383,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38688684766779, -34.61597748653491],
     [-58.38673318375325, -34.61597499655325],
     [-58.38545217270539, -34.615950036953784],
     [-58.38530609016878, -34.615947338705084],
     [-58.38530325660801, -34.61615522643063],
     [-58.385291531859465, -34.61713198979263],
     [-58.38558514912012, -34.61713745749307],
     [-58.38670962566623, -34.61714950126353],
     [-58.38689123155621, -34.61715186779613],
     [-58.38688208369192, -34.61700122673826],
     [-58.38688684766779, -34.61597748653491]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_3',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 374.0,
   'VIVIEND': 179.0,
   'HOGARES': 145.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.01772160802661,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38530609016878, -34.615947338705084],
     [-58.38516622570399, -34.61594478508006],
     [-58.38388337160025, -34.615888117360086],
     [-58.383800718911274, -34.61708737229373],
     [-58.38395037351665, -34.617098032481024],
     [-58.385107541951605, -34.61712856301337],
     [-58.385291531859465, -34.61713198979263],
     [-58.38530325660801, -34.61615522643063],
     [-58.38530609016878, -34.615947338705084]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_4',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 720.0,
   'VIVIEND': 400.0,
   'HOGARES': 303.0,
   'HOGARES_': 17.0,
   'AREA_KM': 0.016536466844298,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38388337160025, -34.615888117360086],
     [-58.383785162358485, -34.6158837580512],
     [-58.38247096370035, -34.61582705519992],
     [-58.38246341522736, -34.61605874282591],
     [-58.382465677669735, -34.61698290892605],
     [-58.38263909580801, -34.61699548777686],
     [-58.383589993079674, -34.617072306092325],
     [-58.383800718911274, -34.61708737229373],
     [-58.38388337160025, -34.615888117360086]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_5',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 643.0,
   'VIVIEND': 365.0,
   'HOGARES': 271.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.035676919250999,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38247096370035, -34.61582705519992],
     [-58.382324033206665, -34.615820690812285],
     [-58.38120848961517, -34.61575178100825],
     [-58.38101633077726, -34.61574306085714],
     [-58.38096822838368, -34.61693459044007],
     [-58.38095853696678, -34.617175572362676],
     [-58.38091460571784, -34.61810773559898],
     [-58.381185823545344, -34.61811263548427],
     [-58.38225004727658, -34.61816707489184],
     [-58.38241741863043, -34.61818091768784],
     [-58.38246611368054, -34.617149460238586],
     [-58.382465677669735, -34.61698290892605],
     [-58.38246341522736, -34.61605874282591],
     [-58.38247096370035, -34.61582705519992]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_6',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 431.0,
   'VIVIEND': 229.0,
   'HOGARES': 216.0,
   'HOGARES_': 108.0,
   'AREA_KM': 0.015857733003844,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383800718911274, -34.61708737229373],
     [-58.383589993079674, -34.617072306092325],
     [-58.38263909580801, -34.61699548777686],
     [-58.382465677669735, -34.61698290892605],
     [-58.38246611368054, -34.617149460238586],
     [-58.38241741863043, -34.61818091768784],
     [-58.38270642179802, -34.61820484017436],
     [-58.3837211741624, -34.61824043129033],
     [-58.383800718911274, -34.61708737229373]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_7',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 746.0,
   'VIVIEND': 402.0,
   'HOGARES': 325.0,
   'HOGARES_': 106.0,
   'AREA_KM': 0.01791860726563,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385291531859465, -34.61713198979263],
     [-58.385107541951605, -34.61712856301337],
     [-58.38395037351665, -34.617098032481024],
     [-58.383800718911274, -34.61708737229373],
     [-58.3837211741624, -34.61824043129033],
     [-58.384975795424154, -34.618284336125996],
     [-58.385277503820184, -34.61829551400709],
     [-58.385291531859465, -34.61713198979263]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_8',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 450.0,
   'VIVIEND': 187.0,
   'HOGARES': 160.0,
   'HOGARES_': 103.0,
   'AREA_KM': 0.01924649918598,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38689123155621, -34.61715186779613],
     [-58.38670962566623, -34.61714950126353],
     [-58.38558514912012, -34.61713745749307],
     [-58.385291531859465, -34.61713198979263],
     [-58.385277503820184, -34.61829551400709],
     [-58.386606486917316, -34.61834466056487],
     [-58.38686355957295, -34.61835601794313],
     [-58.386900462586524, -34.617304762445805],
     [-58.38689123155621, -34.61715186779613]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_19_9',
   'BARRIO': 'MONSERRAT',
   'COMUNA': '1',
   'POBLACI': 507.0,
   'VIVIEND': 292.0,
   'HOGARES': 223.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.019309272887812,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.388454039727414, -34.61718127994098],
     [-58.38820514668243, -34.61717133937495],
     [-58.3871104023207, -34.61715467987973],
     [-58.38689123155621, -34.61715186779613],
     [-58.386900462586524, -34.617304762445805],
     [-58.38686355957295, -34.61835601794313],
     [-58.387140394037345, -34.61836823210048],
     [-58.388367476646614, -34.61844377546042],
     [-58.38846022381077, -34.61731536960704],
     [-58.388454039727414, -34.61718127994098]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 627.0,
   'VIVIEND': 344.0,
   'HOGARES': 259.0,
   'HOGARES_': 68.0,
   'AREA_KM': 0.013056272671413,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39110001890855, -34.61860569319239],
     [-58.390813985129576, -34.618591299478766],
     [-58.38972897407262, -34.61852713351229],
     [-58.389715039229465, -34.61877881788075],
     [-58.389676646554236, -34.61943091417485],
     [-58.39106896248348, -34.619555825427035],
     [-58.39110001890855, -34.61860569319239]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_10',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 860.0,
   'VIVIEND': 383.0,
   'HOGARES': 316.0,
   'HOGARES_': 78.0,
   'AREA_KM': 0.033754095443919,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389433389705914, -34.62191748295459],
     [-58.38814458702001, -34.6218338139486],
     [-58.38807611380557, -34.622766527486604],
     [-58.38805392060227, -34.62300637533544],
     [-58.38929052800113, -34.62308212649707],
     [-58.39089146815434, -34.62318019302479],
     [-58.39095671024401, -34.62200634696815],
     [-58.389650518734975, -34.62193155696885],
     [-58.389433389705914, -34.62191748295459]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 738.0,
   'VIVIEND': 371.0,
   'HOGARES': 298.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.025770162868203,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38972897407262, -34.61852713351229],
     [-58.389526844311966, -34.61851518133109],
     [-58.388367476646614, -34.61844377546042],
     [-58.387140394037345, -34.61836823210048],
     [-58.38686355957295, -34.61835601794313],
     [-58.38682212781077, -34.61923438136771],
     [-58.387065996829044, -34.619248899152225],
     [-58.388085430870404, -34.61930466834286],
     [-58.388316778244594, -34.61931917596763],
     [-58.388551532880015, -34.61933389649448],
     [-58.389420517492226, -34.61940787303255],
     [-58.389676646554236, -34.61943091417485],
     [-58.389715039229465, -34.61877881788075],
     [-58.38972897407262, -34.61852713351229]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 567.0,
   'VIVIEND': 311.0,
   'HOGARES': 238.0,
   'HOGARES_': 21.0,
   'AREA_KM': 0.018072340375336,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.388316778244594, -34.61931917596763],
     [-58.388085430870404, -34.61930466834286],
     [-58.387065996829044, -34.619248899152225],
     [-58.38682212781077, -34.61923438136771],
     [-58.38681130564128, -34.619425714587145],
     [-58.38672276000117, -34.620403415682844],
     [-58.386830853077655, -34.62041122951326],
     [-58.38824118825761, -34.620499141614616],
     [-58.388308459498646, -34.61947727107576],
     [-58.388316778244594, -34.61931917596763]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 769.0,
   'VIVIEND': 447.0,
   'HOGARES': 343.0,
   'HOGARES_': 44.0,
   'AREA_KM': 0.016276074228868,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389676646554236, -34.61943091417485],
     [-58.389420517492226, -34.61940787303255],
     [-58.388551532880015, -34.61933389649448],
     [-58.388316778244594, -34.61931917596763],
     [-58.388308459498646, -34.61947727107576],
     [-58.38824118825761, -34.620499141614616],
     [-58.389599395832, -34.620583696293615],
     [-58.38961810614897, -34.620424128462794],
     [-58.389676646554236, -34.61943091417485]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 700.0,
   'VIVIEND': 469.0,
   'HOGARES': 352.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.016273418712087,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39106896248348, -34.619555825427035],
     [-58.389676646554236, -34.61943091417485],
     [-58.38961810614897, -34.620424128462794],
     [-58.389599395832, -34.620583696293615],
     [-58.38981124065484, -34.6205969217772],
     [-58.390712797536295, -34.62065111963409],
     [-58.39102566709262, -34.620671022367006],
     [-58.39106896248348, -34.619555825427035]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 785.0,
   'VIVIEND': 388.0,
   'HOGARES': 336.0,
   'HOGARES_': 58.0,
   'AREA_KM': 0.020162199004537,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39102566709262, -34.620671022367006],
     [-58.390712797536295, -34.62065111963409],
     [-58.38981124065484, -34.6205969217772],
     [-58.389599395832, -34.620583696293615],
     [-58.389581457363434, -34.620737278605574],
     [-58.389433389705914, -34.62191748295459],
     [-58.389650518734975, -34.62193155696885],
     [-58.39095671024401, -34.62200634696815],
     [-58.391013470318434, -34.62098594787577],
     [-58.39102566709262, -34.620671022367006]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 481.0,
   'VIVIEND': 320.0,
   'HOGARES': 207.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.018077234002901,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389599395832, -34.620583696293615],
     [-58.38824118825761, -34.620499141614616],
     [-58.388229012558966, -34.62068336134981],
     [-58.38814458702001, -34.6218338139486],
     [-58.389433389705914, -34.62191748295459],
     [-58.389581457363434, -34.620737278605574],
     [-58.389599395832, -34.620583696293615]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 563.0,
   'VIVIEND': 332.0,
   'HOGARES': 218.0,
   'HOGARES_': 65.0,
   'AREA_KM': 0.020647169163624,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38824118825761, -34.620499141614616],
     [-58.386830853077655, -34.62041122951326],
     [-58.38672276000117, -34.620403415682844],
     [-58.38661605446716, -34.6215821635173],
     [-58.386612193976376, -34.621705190467836],
     [-58.38686918232703, -34.621726970418386],
     [-58.38792762887822, -34.62181973735871],
     [-58.38814458702001, -34.6218338139486],
     [-58.388229012558966, -34.62068336134981],
     [-58.38824118825761, -34.620499141614616]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_20_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 572.0,
   'VIVIEND': 316.0,
   'HOGARES': 247.0,
   'HOGARES_': 21.0,
   'AREA_KM': 0.018258580171261,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38814458702001, -34.6218338139486],
     [-58.38792762887822, -34.62181973735871],
     [-58.38686918232703, -34.621726970418386],
     [-58.386612193976376, -34.621705190467836],
     [-58.38660648978698, -34.62188821684363],
     [-58.386582723201066, -34.62291391602925],
     [-58.38694901092541, -34.622936186502066],
     [-58.38770262464565, -34.622984892053495],
     [-58.38805392060227, -34.62300637533544],
     [-58.38807611380557, -34.622766527486604],
     [-58.38814458702001, -34.6218338139486]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 627.0,
   'VIVIEND': 325.0,
   'HOGARES': 266.0,
   'HOGARES_': 78.0,
   'AREA_KM': 0.013730356596254,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38686355957295, -34.61835601794313],
     [-58.386606486917316, -34.61834466056487],
     [-58.385277503820184, -34.61829551400709],
     [-58.38526752805178, -34.6191310795282],
     [-58.38551872140225, -34.61914659097998],
     [-58.38654572023424, -34.619218011783],
     [-58.38682212781077, -34.61923438136771],
     [-58.38686355957295, -34.61835601794313]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_10',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 816.0,
   'VIVIEND': 546.0,
   'HOGARES': 376.0,
   'HOGARES_': 65.0,
   'AREA_KM': 0.037786039266573,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38238028185317, -34.62021154742342],
     [-58.38219381096694, -34.620212199160335],
     [-58.381088119406975, -34.62020047842637],
     [-58.38084576644507, -34.620201794936385],
     [-58.38084949696555, -34.62030651678056],
     [-58.3808609415112, -34.620623358553836],
     [-58.3808588139508, -34.621402237938376],
     [-58.380857981569015, -34.62172949405288],
     [-58.380830368973555, -34.622609272642094],
     [-58.382364434144215, -34.62269022291204],
     [-58.38237138504844, -34.62157669572764],
     [-58.38237227481484, -34.621448948601504],
     [-58.38238028185317, -34.62021154742342]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 640.0,
   'VIVIEND': 319.0,
   'HOGARES': 266.0,
   'HOGARES_': 59.0,
   'AREA_KM': 0.037575968809897,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385277503820184, -34.61829551400709],
     [-58.384975795424154, -34.618284336125996],
     [-58.3837211741624, -34.61824043129033],
     [-58.38270642179802, -34.61820484017436],
     [-58.38241741863043, -34.61818091768784],
     [-58.38225004727658, -34.61816707489184],
     [-58.381185823545344, -34.61811263548427],
     [-58.38091460571784, -34.61810773559898],
     [-58.38090425298678, -34.6183278717448],
     [-58.38087442549156, -34.61886229377056],
     [-58.38087081539351, -34.618982081287356],
     [-58.38106843682335, -34.6189873545851],
     [-58.38219513515763, -34.61901725854967],
     [-58.38238108121011, -34.619028085451866],
     [-58.38255058777007, -34.619037915345366],
     [-58.38342642882438, -34.61905912165123],
     [-58.3836962848275, -34.61906626861556],
     [-58.38386400788873, -34.61907067293931],
     [-58.38506079833359, -34.61911827194892],
     [-58.38526752805178, -34.6191310795282],
     [-58.385277503820184, -34.61829551400709]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 400.0,
   'VIVIEND': 182.0,
   'HOGARES': 170.0,
   'HOGARES_': 54.0,
   'AREA_KM': 0.018679468810698,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38238108121011, -34.619028085451866],
     [-58.38219513515763, -34.61901725854967],
     [-58.38106843682335, -34.6189873545851],
     [-58.38087081539351, -34.618982081287356],
     [-58.380856730563224, -34.61944602014887],
     [-58.38083930047542, -34.62002002824004],
     [-58.38084576644507, -34.620201794936385],
     [-58.381088119406975, -34.62020047842637],
     [-58.38219381096694, -34.620212199160335],
     [-58.38238028185317, -34.62021154742342],
     [-58.38238098866618, -34.620096828445824],
     [-58.382374886132766, -34.619180688540396],
     [-58.38238108121011, -34.619028085451866]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 1160.0,
   'VIVIEND': 549.0,
   'HOGARES': 500.0,
   'HOGARES_': 195.0,
   'AREA_KM': 0.033452693094595,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3836962848275, -34.61906626861556],
     [-58.38342642882438, -34.61905912165123],
     [-58.38255058777007, -34.619037915345366],
     [-58.38238108121011, -34.619028085451866],
     [-58.382374886132766, -34.619180688540396],
     [-58.38238098866618, -34.620096828445824],
     [-58.38238028185317, -34.62021154742342],
     [-58.38237227481484, -34.621448948601504],
     [-58.383544831225585, -34.62148513796759],
     [-58.383750290245246, -34.62149639798181],
     [-58.383756850759575, -34.62041561703453],
     [-58.38374797657206, -34.6202514547433],
     [-58.38369515274943, -34.61927211502181],
     [-58.3836962848275, -34.61906626861556]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 724.0,
   'VIVIEND': 374.0,
   'HOGARES': 275.0,
   'HOGARES_': 56.0,
   'AREA_KM': 0.018542312985383,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38526752805178, -34.6191310795282],
     [-58.38506079833359, -34.61911827194892],
     [-58.38386400788873, -34.61907067293931],
     [-58.3836962848275, -34.61906626861556],
     [-58.38369515274943, -34.61927211502181],
     [-58.38374797657206, -34.6202514547433],
     [-58.38398367536401, -34.62026055081211],
     [-58.385042485191065, -34.62030566650067],
     [-58.385236270747576, -34.62031733911991],
     [-58.38526531789991, -34.61930953062406],
     [-58.38526752805178, -34.6191310795282]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 602.0,
   'VIVIEND': 319.0,
   'HOGARES': 264.0,
   'HOGARES_': 70.0,
   'AREA_KM': 0.018281410697963,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38682212781077, -34.61923438136771],
     [-58.38654572023424, -34.619218011783],
     [-58.38551872140225, -34.61914659097998],
     [-58.38526752805178, -34.6191310795282],
     [-58.38526531789991, -34.61930953062406],
     [-58.385236270747576, -34.62031733911991],
     [-58.38542647884141, -34.62032872747229],
     [-58.38658323563571, -34.62039332860524],
     [-58.38672276000117, -34.620403415682844],
     [-58.38681130564128, -34.619425714587145],
     [-58.38682212781077, -34.61923438136771]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 785.0,
   'VIVIEND': 390.0,
   'HOGARES': 332.0,
   'HOGARES_': 111.0,
   'AREA_KM': 0.035715605815395,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385243765659496, -34.62160249727872],
     [-58.385245740455105, -34.621769190281924],
     [-58.38523299184578, -34.62283764309181],
     [-58.38626260495783, -34.62289441990076],
     [-58.386582723201066, -34.62291391602925],
     [-58.38660648978698, -34.62188821684363],
     [-58.386612193976376, -34.621705190467836],
     [-58.38661605446716, -34.6215821635173],
     [-58.38672276000117, -34.620403415682844],
     [-58.38658323563571, -34.62039332860524],
     [-58.38542647884141, -34.62032872747229],
     [-58.385236270747576, -34.62031733911991],
     [-58.38523107527434, -34.62049980240843],
     [-58.385243765659496, -34.62160249727872]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 553.0,
   'VIVIEND': 332.0,
   'HOGARES': 240.0,
   'HOGARES_': 38.0,
   'AREA_KM': 0.03779805935302,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383750290245246, -34.62149639798181],
     [-58.38374917612895, -34.62168337089648],
     [-58.38379449781894, -34.62276087529776],
     [-58.38417467328853, -34.62277936023037],
     [-58.38523299184578, -34.62283764309181],
     [-58.385245740455105, -34.621769190281924],
     [-58.385243765659496, -34.62160249727872],
     [-58.38523107527434, -34.62049980240843],
     [-58.385236270747576, -34.62031733911991],
     [-58.385042485191065, -34.62030566650067],
     [-58.38398367536401, -34.62026055081211],
     [-58.38374797657206, -34.6202514547433],
     [-58.383756850759575, -34.62041561703453],
     [-58.383750290245246, -34.62149639798181]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_21_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 709.0,
   'VIVIEND': 430.0,
   'HOGARES': 328.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.017873040754274,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383750290245246, -34.62149639798181],
     [-58.383544831225585, -34.62148513796759],
     [-58.38237227481484, -34.621448948601504],
     [-58.38237138504844, -34.62157669572764],
     [-58.382364434144215, -34.62269022291204],
     [-58.38265346117501, -34.62270555390276],
     [-58.38379449781894, -34.62276087529776],
     [-58.38374917612895, -34.62168337089648],
     [-58.383750290245246, -34.62149639798181]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1472.0,
   'VIVIEND': 1244.0,
   'HOGARES': 663.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.021599219048142,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383246916894215, -34.58812639302252],
     [-58.38223922773888, -34.58867430075138],
     [-58.38294970182005, -34.5900551398613],
     [-58.383078440895986, -34.58998085662179],
     [-58.384352448842854, -34.58923920530824],
     [-58.383246916894215, -34.58812639302252]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_2',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1299.0,
   'VIVIEND': 938.0,
   'HOGARES': 616.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.031777667076528,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38223922773888, -34.58867430075138],
     [-58.38137199602232, -34.58914640905759],
     [-58.38030905088542, -34.589725000487846],
     [-58.38084019404243, -34.590815374043345],
     [-58.38095350934532, -34.59066819431319],
     [-58.38099484897993, -34.590627869290714],
     [-58.381045717785945, -34.59059586061191],
     [-58.381103815073025, -34.59057371604534],
     [-58.38116624456079, -34.5905624899994],
     [-58.38163758496207, -34.59055400105031],
     [-58.38176753357378, -34.59055162247426],
     [-58.38209495968159, -34.59054571232784],
     [-58.38294970182005, -34.5900551398613],
     [-58.38223922773888, -34.58867430075138]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_3',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1189.0,
   'VIVIEND': 542.0,
   'HOGARES': 469.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.041375919008806,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383679480420064, -34.591308168267595],
     [-58.38361404477337, -34.591346295451835],
     [-58.38294970182005, -34.5900551398613],
     [-58.38209495968159, -34.59054571232784],
     [-58.38176753357378, -34.59055162247426],
     [-58.38163758496207, -34.59055400105031],
     [-58.38116624456079, -34.5905624899994],
     [-58.381103815073025, -34.59057371604534],
     [-58.381045717785945, -34.59059586061191],
     [-58.38099484897993, -34.590627869290714],
     [-58.38095350934532, -34.59066819431319],
     [-58.38084019404243, -34.590815374043345],
     [-58.38094982376018, -34.59104038041226],
     [-58.3809496612221, -34.591814898654036],
     [-58.38096067339409, -34.592048148853316],
     [-58.38124825474437, -34.592039679041584],
     [-58.38146609103638, -34.59203320442816],
     [-58.38156853708557, -34.59203017394365],
     [-58.38213586483736, -34.59201350729925],
     [-58.3822966445906, -34.59200875411123],
     [-58.38248595249161, -34.59200317438382],
     [-58.38255186534453, -34.592001245831554],
     [-58.38373540094289, -34.59196645350541],
     [-58.383679480420064, -34.591308168267595]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_4',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1545.0,
   'VIVIEND': 660.0,
   'HOGARES': 604.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.026358151505888,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384352448842854, -34.58923920530824],
     [-58.383078440895986, -34.58998085662179],
     [-58.38294970182005, -34.5900551398613],
     [-58.38361404477337, -34.591346295451835],
     [-58.383679480420064, -34.591308168267595],
     [-58.38373392488003, -34.59127644248092],
     [-58.38431657408224, -34.59089815057598],
     [-58.385245325349686, -34.59029521353447],
     [-58.38533939314161, -34.59023358214577],
     [-58.384352448842854, -34.58923920530824]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_5',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1069.0,
   'VIVIEND': 483.0,
   'HOGARES': 384.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.017316465891778,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38533939314161, -34.59023358214577],
     [-58.385245325349686, -34.59029521353447],
     [-58.38431657408224, -34.59089815057598],
     [-58.38532042861751, -34.59186000248387],
     [-58.38541198312499, -34.59193942785544],
     [-58.38548416334758, -34.59188228961693],
     [-58.38632083099745, -34.59122231352344],
     [-58.38533939314161, -34.59023358214577]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_6',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1271.0,
   'VIVIEND': 517.0,
   'HOGARES': 486.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.021640257466853,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38431657408224, -34.59089815057598],
     [-58.38373392488003, -34.59127644248092],
     [-58.383679480420064, -34.591308168267595],
     [-58.38373540094289, -34.59196645350541],
     [-58.38383916223976, -34.593184848049965],
     [-58.38541198312499, -34.59193942785544],
     [-58.38532042861751, -34.59186000248387],
     [-58.38431657408224, -34.59089815057598]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_7',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1393.0,
   'VIVIEND': 672.0,
   'HOGARES': 549.0,
   'HOGARES_': 25.0,
   'AREA_KM': 0.01950188189014,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38646081295801, -34.592822142641126],
     [-58.38548056404511, -34.59199890875524],
     [-58.38541198312499, -34.59193942785544],
     [-58.38383916223976, -34.593184848049965],
     [-58.383846573124586, -34.593272670998644],
     [-58.38565507535041, -34.593262206314456],
     [-58.38590747286106, -34.59327271766599],
     [-58.386295655251395, -34.59295661875148],
     [-58.38646081295801, -34.592822142641126]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_4_8',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1128.0,
   'VIVIEND': 500.0,
   'HOGARES': 451.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.021945650333636,
   'partidas': 22.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.386295655251395, -34.59295661875148],
     [-58.38590747286106, -34.59327271766599],
     [-58.38610818165247, -34.59328115378183],
     [-58.386432292855545, -34.59327980745796],
     [-58.38696989508225, -34.59327753659437],
     [-58.38731309668843, -34.59212815502405],
     [-58.38735332014348, -34.592095362487],
     [-58.38728158460543, -34.59203855678536],
     [-58.38632083099745, -34.59122231352344],
     [-58.38548416334758, -34.59188228961693],
     [-58.38541198312499, -34.59193942785544],
     [-58.38548056404511, -34.59199890875524],
     [-58.38646081295801, -34.592822142641126],
     [-58.386295655251395, -34.59295661875148]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 567.0,
   'VIVIEND': 367.0,
   'HOGARES': 261.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.059435829144195,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.379560230913924, -34.62020867212515],
     [-58.37974763877018, -34.6202080954743],
     [-58.38001835867068, -34.62020651868291],
     [-58.38044139036779, -34.620204128589776],
     [-58.38052359451353, -34.62020362060763],
     [-58.38084576644507, -34.620201794936385],
     [-58.38083930047542, -34.62002002824004],
     [-58.380856730563224, -34.61944602014887],
     [-58.38087081539351, -34.618982081287356],
     [-58.38087442549156, -34.61886229377056],
     [-58.38090425298678, -34.6183278717448],
     [-58.38091460571784, -34.61810773559898],
     [-58.380536400048236, -34.618100861671735],
     [-58.380087238264686, -34.61809274134598],
     [-58.37967794146832, -34.61808535073581],
     [-58.37944658871725, -34.61808117894317],
     [-58.37926695017999, -34.6180688729939],
     [-58.37835206324861, -34.61800655308252],
     [-58.37817651338339, -34.61799467089408],
     [-58.378164725604464, -34.61819480560855],
     [-58.37813573905133, -34.61880669311455],
     [-58.378131314509474, -34.61896971985448],
     [-58.37809822888516, -34.620178793432466],
     [-58.37834091984443, -34.620180158697316],
     [-58.37932707853196, -34.620209358079094],
     [-58.379560230913924, -34.62020867212515]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_10',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 1231.0,
   'VIVIEND': 737.0,
   'HOGARES': 582.0,
   'HOGARES_': 85.0,
   'AREA_KM': 0.027571599789023,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37799060946375, -34.62406544586506],
     [-58.37665462648708, -34.62394690407556],
     [-58.37648639198883, -34.62393368657652],
     [-58.37646881127669, -34.624046773780805],
     [-58.37615408480542, -34.62556043783628],
     [-58.37740975144251, -34.62610174962272],
     [-58.37745905396998, -34.62604107932303],
     [-58.37799060946375, -34.62406544586506]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 810.0,
   'VIVIEND': 564.0,
   'HOGARES': 422.0,
   'HOGARES_': 42.0,
   'AREA_KM': 0.015003954901845,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37817651338339, -34.61799467089408],
     [-58.37676155449785, -34.61789875177505],
     [-58.376752014026, -34.6180640284273],
     [-58.37671000619595, -34.61890224672811],
     [-58.37670709424564, -34.619000062557426],
     [-58.378131314509474, -34.61896971985448],
     [-58.37813573905133, -34.61880669311455],
     [-58.378164725604464, -34.61819480560855],
     [-58.37817651338339, -34.61799467089408]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 817.0,
   'VIVIEND': 461.0,
   'HOGARES': 371.0,
   'HOGARES_': 76.0,
   'AREA_KM': 0.017249634873923,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.378131314509474, -34.61896971985448],
     [-58.37670709424564, -34.619000062557426],
     [-58.37667155748238, -34.62017047164702],
     [-58.37809822888516, -34.620178793432466],
     [-58.378131314509474, -34.61896971985448]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 446.0,
   'VIVIEND': 269.0,
   'HOGARES': 207.0,
   'HOGARES_': 30.0,
   'AREA_KM': 0.016821204109235,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37809822888516, -34.620178793432466],
     [-58.37667155748238, -34.62017047164702],
     [-58.37666882336725, -34.620260963564824],
     [-58.376628101100515, -34.62125474732138],
     [-58.37663185603005, -34.621330736618546],
     [-58.37795370079678, -34.62132152114515],
     [-58.37806741994694, -34.62132596633403],
     [-58.37807537245262, -34.62121230878188],
     [-58.37809539762636, -34.62028259530578],
     [-58.37809822888516, -34.620178793432466]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 447.0,
   'VIVIEND': 252.0,
   'HOGARES': 186.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.050223310247198,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38052359451353, -34.62020362060763],
     [-58.38044139036779, -34.620204128589776],
     [-58.38001835867068, -34.62020651868291],
     [-58.37974763877018, -34.6202080954743],
     [-58.379560230913924, -34.62020867212515],
     [-58.37932707853196, -34.620209358079094],
     [-58.37834091984443, -34.620180158697316],
     [-58.37809822888516, -34.620178793432466],
     [-58.37809539762636, -34.62028259530578],
     [-58.37807537245262, -34.62121230878188],
     [-58.37806741994694, -34.62132596633403],
     [-58.37833225353762, -34.6213363611501],
     [-58.37949039690848, -34.6213857486584],
     [-58.37940810262747, -34.62258373210508],
     [-58.37964969128288, -34.62258699544471],
     [-58.37979868233131, -34.62258899821696],
     [-58.380173843287345, -34.62259411180164],
     [-58.38039805396189, -34.62259715063167],
     [-58.380443885677636, -34.62259633646685],
     [-58.380550457129104, -34.62259450685652],
     [-58.380830368973555, -34.622609272642094],
     [-58.380857981569015, -34.62172949405288],
     [-58.3808588139508, -34.621402237938376],
     [-58.3808609415112, -34.620623358553836],
     [-58.38084949696555, -34.62030651678056],
     [-58.38084576644507, -34.620201794936385],
     [-58.38052359451353, -34.62020362060763]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 578.0,
   'VIVIEND': 355.0,
   'HOGARES': 259.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.017345413933076,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37949039690848, -34.6213857486584],
     [-58.37833225353762, -34.6213363611501],
     [-58.37806741994694, -34.62132596633403],
     [-58.378058429668215, -34.62145490500068],
     [-58.37802931505393, -34.6223586962433],
     [-58.378020178539124, -34.62254756492725],
     [-58.37940810262747, -34.62258373210508],
     [-58.37949039690848, -34.6213857486584]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 562.0,
   'VIVIEND': 334.0,
   'HOGARES': 268.0,
   'HOGARES_': 40.0,
   'AREA_KM': 0.017377833664526,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37806741994694, -34.62132596633403],
     [-58.37795370079678, -34.62132152114515],
     [-58.37663185603005, -34.621330736618546],
     [-58.37663811515745, -34.62145651689249],
     [-58.376614970288024, -34.62233897376685],
     [-58.376602098034354, -34.622512628295226],
     [-58.37778958204751, -34.622541559507546],
     [-58.378020178539124, -34.62254756492725],
     [-58.37802931505393, -34.6223586962433],
     [-58.378058429668215, -34.62145490500068],
     [-58.37806741994694, -34.62132596633403]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 533.0,
   'VIVIEND': 360.0,
   'HOGARES': 276.0,
   'HOGARES_': 52.0,
   'AREA_KM': 0.042232267455552,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37940810262747, -34.62258373210508],
     [-58.378020178539124, -34.62254756492725],
     [-58.37778958204751, -34.622541559507546],
     [-58.376602098034354, -34.622512628295226],
     [-58.37650671682412, -34.623803065933636],
     [-58.37648639198883, -34.62393368657652],
     [-58.37665462648708, -34.62394690407556],
     [-58.37799060946375, -34.62406544586506],
     [-58.379180424632615, -34.62417098558928],
     [-58.379208334688656, -34.62394776320416],
     [-58.3792893975378, -34.62338879939438],
     [-58.37934558331462, -34.623001369389385],
     [-58.37940810262747, -34.62258373210508]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_22_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 880.0,
   'VIVIEND': 441.0,
   'HOGARES': 377.0,
   'HOGARES_': 68.0,
   'AREA_KM': 0.089846214705281,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37964969128288, -34.62258699544471],
     [-58.37940810262747, -34.62258373210508],
     [-58.37934558331462, -34.623001369389385],
     [-58.3792893975378, -34.62338879939438],
     [-58.379208334688656, -34.62394776320416],
     [-58.379180424632615, -34.62417098558928],
     [-58.37799060946375, -34.62406544586506],
     [-58.37745905396998, -34.62604107932303],
     [-58.37740975144251, -34.62610174962272],
     [-58.3784125285274, -34.62653083072465],
     [-58.3794582556113, -34.626786410234494],
     [-58.37958516055396, -34.62681741253613],
     [-58.37975050054926, -34.62649252223123],
     [-58.380292934984304, -34.62509372247609],
     [-58.38082572907337, -34.62507837688683],
     [-58.38084530091435, -34.62440662334079],
     [-58.3808494474671, -34.624261343100194],
     [-58.38085518009476, -34.62406240145382],
     [-58.38084775773844, -34.62337943239216],
     [-58.38084127040597, -34.622785408382036],
     [-58.380830368973555, -34.622609272642094],
     [-58.380550457129104, -34.62259450685652],
     [-58.380443885677636, -34.62259633646685],
     [-58.38039805396189, -34.62259715063167],
     [-58.380173843287345, -34.62259411180164],
     [-58.37979868233131, -34.62258899821696],
     [-58.37964969128288, -34.62258699544471]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_1',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 607.0,
   'VIVIEND': 362.0,
   'HOGARES': 272.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.033824930815201,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37531499896241, -34.61780011753258],
     [-58.37530415545374, -34.617986801807106],
     [-58.375265251745724, -34.61885664186886],
     [-58.37525344464386, -34.61898719809369],
     [-58.376592519377155, -34.619002516974795],
     [-58.37670709424564, -34.619000062557426],
     [-58.37671000619595, -34.61890224672811],
     [-58.376752014026, -34.6180640284273],
     [-58.37676155449785, -34.61789875177505],
     [-58.37682893495066, -34.616739914053625],
     [-58.37666658660233, -34.61673240522642],
     [-58.37555817649175, -34.61667718132701],
     [-58.3753797321879, -34.61666670151161],
     [-58.3753745962968, -34.61677191019505],
     [-58.37531499896241, -34.61780011753258]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_10',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 362.0,
   'VIVIEND': 191.0,
   'HOGARES': 150.0,
   'HOGARES_': 51.0,
   'AREA_KM': 0.017307972300494,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37670709424564, -34.619000062557426],
     [-58.376592519377155, -34.619002516974795],
     [-58.37525344464386, -34.61898719809369],
     [-58.375243964876645, -34.6190916289616],
     [-58.375203518367016, -34.62005055312152],
     [-58.3752044464304, -34.6201402729782],
     [-58.376565928633546, -34.62016983372427],
     [-58.37667155748238, -34.62017047164702],
     [-58.37670709424564, -34.619000062557426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_2',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 525.0,
   'VIVIEND': 313.0,
   'HOGARES': 219.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.0185712384334,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37531499896241, -34.61780011753258],
     [-58.37384238306981, -34.617699545731234],
     [-58.373832406644084, -34.61786883596382],
     [-58.37376905506657, -34.61888422257969],
     [-58.37376496654916, -34.61896379785971],
     [-58.373892137690135, -34.618971637061534],
     [-58.37525344464386, -34.61898719809369],
     [-58.375265251745724, -34.61885664186886],
     [-58.37530415545374, -34.617986801807106],
     [-58.37531499896241, -34.61780011753258]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_3',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 790.0,
   'VIVIEND': 508.0,
   'HOGARES': 373.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.017302172209871,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3753797321879, -34.61666670151161],
     [-58.37526167794587, -34.61665971547426],
     [-58.37465510061604, -34.61657892625993],
     [-58.374109466445425, -34.616543178768644],
     [-58.37393706831356, -34.6165347435084],
     [-58.37385261972872, -34.617525819017494],
     [-58.37384238306981, -34.617699545731234],
     [-58.37531499896241, -34.61780011753258],
     [-58.3753745962968, -34.61677191019505],
     [-58.3753797321879, -34.61666670151161]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_4',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 370.0,
   'VIVIEND': 169.0,
   'HOGARES': 131.0,
   'HOGARES_': 33.0,
   'AREA_KM': 0.016155785192974,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37393706831356, -34.6165347435084],
     [-58.373741161306576, -34.616525234515045],
     [-58.372671245699635, -34.6164812801745],
     [-58.37253129808982, -34.61647638803446],
     [-58.37252719998497, -34.61656385070246],
     [-58.37248646469823, -34.617604535521906],
     [-58.37384238306981, -34.617699545731234],
     [-58.37385261972872, -34.617525819017494],
     [-58.37393706831356, -34.6165347435084]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_5',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 501.0,
   'VIVIEND': 250.0,
   'HOGARES': 228.0,
   'HOGARES_': 46.0,
   'AREA_KM': 0.016683349984582,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37253129808982, -34.61647638803446],
     [-58.372394587231234, -34.61647163897645],
     [-58.371117889575736, -34.61647188442749],
     [-58.37111312176513, -34.61654730416573],
     [-58.37109104276136, -34.61710553278586],
     [-58.37108753814925, -34.617194122612936],
     [-58.371075379648026, -34.61748369391057],
     [-58.37107025504296, -34.61765115655809],
     [-58.37127034936321, -34.61765060245397],
     [-58.37248646469823, -34.617604535521906],
     [-58.37252719998497, -34.61656385070246],
     [-58.37253129808982, -34.61647638803446]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_6',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 484.0,
   'VIVIEND': 274.0,
   'HOGARES': 214.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.018914036402397,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37248646469823, -34.617604535521906],
     [-58.37127034936321, -34.61765060245397],
     [-58.37107025504296, -34.61765115655809],
     [-58.371064334130416, -34.61784559070746],
     [-58.37103937978402, -34.61830670338452],
     [-58.371010076683255, -34.618849010747184],
     [-58.371003600002624, -34.618928936254164],
     [-58.372296578724466, -34.618953281807016],
     [-58.372422909536574, -34.618950347162155],
     [-58.37243442739299, -34.618855002619846],
     [-58.37248646469823, -34.617604535521906]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_7',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 568.0,
   'VIVIEND': 314.0,
   'HOGARES': 265.0,
   'HOGARES_': 96.0,
   'AREA_KM': 0.017846658630653,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37384238306981, -34.617699545731234],
     [-58.37248646469823, -34.617604535521906],
     [-58.37243442739299, -34.618855002619846],
     [-58.372422909536574, -34.618950347162155],
     [-58.37254523655077, -34.61894755027408],
     [-58.37368021417149, -34.61895859514666],
     [-58.37376496654916, -34.61896379785971],
     [-58.37376905506657, -34.61888422257969],
     [-58.373832406644084, -34.61786883596382],
     [-58.37384238306981, -34.617699545731234]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_8',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 681.0,
   'VIVIEND': 364.0,
   'HOGARES': 315.0,
   'HOGARES_': 63.0,
   'AREA_KM': 0.030954630812742,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.372422909536574, -34.618950347162155],
     [-58.372296578724466, -34.618953281807016],
     [-58.371003600002624, -34.618928936254164],
     [-58.370927863449374, -34.619865015325374],
     [-58.37092026897347, -34.61995423583927],
     [-58.371029636256445, -34.61996340266998],
     [-58.372178949845306, -34.62004250112775],
     [-58.37234164404436, -34.620050861262804],
     [-58.373705645947744, -34.62011165328559],
     [-58.37376496654916, -34.61896379785971],
     [-58.37368021417149, -34.61895859514666],
     [-58.37254523655077, -34.61894755027408],
     [-58.372422909536574, -34.618950347162155]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_23_9',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 898.0,
   'VIVIEND': 509.0,
   'HOGARES': 405.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.01737224431908,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37525344464386, -34.61898719809369],
     [-58.373892137690135, -34.618971637061534],
     [-58.37376496654916, -34.61896379785971],
     [-58.373705645947744, -34.62011165328559],
     [-58.37383214696213, -34.620110477888105],
     [-58.3752044464304, -34.6201402729782],
     [-58.375203518367016, -34.62005055312152],
     [-58.375243964876645, -34.6190916289616],
     [-58.37525344464386, -34.61898719809369]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_1',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 248.0,
   'VIVIEND': 216.0,
   'HOGARES': 113.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.016347471685007,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36996859892126, -34.61634073319188],
     [-58.369750650482715, -34.61631366564103],
     [-58.36965099539089, -34.616307533270955],
     [-58.3688956702333, -34.6162652567277],
     [-58.36886158534952, -34.61702116133722],
     [-58.369500677795365, -34.61704538389567],
     [-58.3696743563682, -34.6170519249735],
     [-58.37109104276136, -34.61710553278586],
     [-58.37111312176513, -34.61654730416573],
     [-58.371117889575736, -34.61647188442749],
     [-58.371120836088764, -34.61642604109299],
     [-58.37009379792744, -34.61635632141335],
     [-58.36996859892126, -34.61634073319188]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_2',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 287.0,
   'VIVIEND': 237.0,
   'HOGARES': 145.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.048555032580525,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.368545250885035, -34.61623936023361],
     [-58.36821807277329, -34.6162241056883],
     [-58.36798360632076, -34.61620469976026],
     [-58.366972080210516, -34.61613172637395],
     [-58.366138483901324, -34.6160715617538],
     [-58.36599622576021, -34.617325405634894],
     [-58.36662873419403, -34.61737259599987],
     [-58.366832827451134, -34.61737550306222],
     [-58.36704049837356, -34.61737841258857],
     [-58.3680847651357, -34.6174578146931],
     [-58.36838881777363, -34.617480308504845],
     [-58.36838920663597, -34.61748076354137],
     [-58.3686916678331, -34.617535367926],
     [-58.36882863112268, -34.617563320433625],
     [-58.36882880502952, -34.61756343572085],
     [-58.36920139450454, -34.61761220293338],
     [-58.369278141868946, -34.61761402231182],
     [-58.37087493093734, -34.61765171392467],
     [-58.37107025504296, -34.61765115655809],
     [-58.371075379648026, -34.61748369391057],
     [-58.37108753814925, -34.617194122612936],
     [-58.37109104276136, -34.61710553278586],
     [-58.3696743563682, -34.6170519249735],
     [-58.369500677795365, -34.61704538389567],
     [-58.36886158534952, -34.61702116133722],
     [-58.3688956702333, -34.6162652567277],
     [-58.368545250885035, -34.61623936023361]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_3',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 534.0,
   'VIVIEND': 254.0,
   'HOGARES': 200.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.096419608111739,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36656090704715, -34.61975580580543],
     [-58.367894014547105, -34.61985917408172],
     [-58.36805508479934, -34.6198716232182],
     [-58.36808852892096, -34.619600871856925],
     [-58.3682123635282, -34.61962174268863],
     [-58.36836404825918, -34.61964728286763],
     [-58.368701787778505, -34.618831408739275],
     [-58.36887043751372, -34.61884386263974],
     [-58.369556220338964, -34.61887192366972],
     [-58.370902914833955, -34.61892702952668],
     [-58.371003600002624, -34.618928936254164],
     [-58.371010076683255, -34.618849010747184],
     [-58.37103937978402, -34.61830670338452],
     [-58.371064334130416, -34.61784559070746],
     [-58.37107025504296, -34.61765115655809],
     [-58.37087493093734, -34.61765171392467],
     [-58.369278141868946, -34.61761402231182],
     [-58.36920139450454, -34.61761220293338],
     [-58.36882880502952, -34.61756343572085],
     [-58.36882863112268, -34.617563320433625],
     [-58.3686916678331, -34.617535367926],
     [-58.36838920663597, -34.61748076354137],
     [-58.36838881777363, -34.617480308504845],
     [-58.3680847651357, -34.6174578146931],
     [-58.36704049837356, -34.61737841258857],
     [-58.366832827451134, -34.61737550306222],
     [-58.36662873419403, -34.61737259599987],
     [-58.36599622576021, -34.617325405634894],
     [-58.36585542621768, -34.618566503639016],
     [-58.365727876185, -34.61969127258969],
     [-58.36656090704715, -34.61975580580543]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_4',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 328.0,
   'VIVIEND': 260.0,
   'HOGARES': 168.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.014498068024199,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.371003600002624, -34.618928936254164],
     [-58.370902914833955, -34.61892702952668],
     [-58.369556220338964, -34.61887192366972],
     [-58.369510765142394, -34.61983323648858],
     [-58.36966331358696, -34.61984884603676],
     [-58.37092026897347, -34.61995423583927],
     [-58.370927863449374, -34.619865015325374],
     [-58.371003600002624, -34.618928936254164]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_5',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 345.0,
   'VIVIEND': 232.0,
   'HOGARES': 168.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.009246745802071,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.369556220338964, -34.61887192366972],
     [-58.36887043751372, -34.61884386263974],
     [-58.368701787778505, -34.618831408739275],
     [-58.36836404825918, -34.61964728286763],
     [-58.369510765142394, -34.61983323648858],
     [-58.369556220338964, -34.61887192366972]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_6',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 720.0,
   'VIVIEND': 540.0,
   'HOGARES': 365.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.037471932516009,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3682123635282, -34.61962174268863],
     [-58.36808852892096, -34.619600871856925],
     [-58.36805508479934, -34.6198716232182],
     [-58.368018630433106, -34.620167513311635],
     [-58.36786694973854, -34.620811697504294],
     [-58.36783670027426, -34.62104378889155],
     [-58.36780636497294, -34.62127630273474],
     [-58.367715005291394, -34.622133915820314],
     [-58.36817047372759, -34.62215765012589],
     [-58.36915254213308, -34.622205590744386],
     [-58.36937720275283, -34.62112047081756],
     [-58.36940349701827, -34.62099344745654],
     [-58.369501593317736, -34.61996048424972],
     [-58.369510765142394, -34.61983323648858],
     [-58.36836404825918, -34.61964728286763],
     [-58.3682123635282, -34.61962174268863]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_7',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 566.0,
   'VIVIEND': 509.0,
   'HOGARES': 261.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.169328172902063,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36285906262175, -34.62556753403984],
     [-58.36313115344682, -34.625574164950436],
     [-58.365891846939135, -34.625641528605804],
     [-58.36737510155475, -34.625641640410755],
     [-58.36737872178309, -34.62545572610261],
     [-58.36746319410271, -34.62451845976284],
     [-58.36748571337994, -34.62426910889217],
     [-58.36756552595475, -34.62345655811629],
     [-58.36759113954603, -34.623257210056636],
     [-58.36916034015698, -34.623379340054434],
     [-58.36915036666068, -34.62315735852444],
     [-58.369152542133065, -34.62220559074438],
     [-58.368170473727574, -34.62215765012588],
     [-58.367715005291394, -34.6221339158203],
     [-58.367806364972935, -34.621276302734735],
     [-58.36783670027424, -34.62104378889155],
     [-58.36786694973853, -34.620811697504294],
     [-58.36801863043309, -34.620167513311635],
     [-58.36805508479932, -34.6198716232182],
     [-58.367894014547105, -34.61985917408171],
     [-58.36656090704714, -34.61975580580543],
     [-58.365727876185, -34.61969127258968],
     [-58.36559429856915, -34.62086850168986],
     [-58.36547104527518, -34.62195510398578],
     [-58.36534021439041, -34.62310832024522],
     [-58.365260404323884, -34.62404622284599],
     [-58.365243820315776, -34.62424100009351],
     [-58.365189840655454, -34.62443356432647],
     [-58.36488276005907, -34.62441029008872],
     [-58.36447230913749, -34.624634258047145],
     [-58.36410200630665, -34.624836355468815],
     [-58.3635569487537, -34.625133733229404],
     [-58.36314175008513, -34.62533255175148],
     [-58.36292507209285, -34.62543624886632],
     [-58.36285906262175, -34.62556753403984]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_24_8',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 428.0,
   'VIVIEND': 247.0,
   'HOGARES': 184.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.040705349147841,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36746319410271, -34.624518459762854],
     [-58.367378721783105, -34.62545572610261],
     [-58.367375101554764, -34.62564164041078],
     [-58.36912685046809, -34.625741448364025],
     [-58.36914990952638, -34.62477927437918],
     [-58.369156066504026, -34.62460667191306],
     [-58.3691618703704, -34.62444505518576],
     [-58.369164829464076, -34.62347814722396],
     [-58.36916034015701, -34.62337934005445],
     [-58.36759113954604, -34.623257210056636],
     [-58.36756552595475, -34.6234565581163],
     [-58.36748571337994, -34.62426910889219],
     [-58.36746319410271, -34.624518459762854]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_1',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 424.0,
   'VIVIEND': 236.0,
   'HOGARES': 175.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.015558935847582,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.373705645947744, -34.62011165328559],
     [-58.37234164404436, -34.620050861262804],
     [-58.37225393386672, -34.62104369323665],
     [-58.372253883288984, -34.62116883524886],
     [-58.37237841764288, -34.6211759698413],
     [-58.373422595971036, -34.621206809214065],
     [-58.37362755419862, -34.62120646608009],
     [-58.37363323017843, -34.62107646897204],
     [-58.37369912228341, -34.620237917368506],
     [-58.373705645947744, -34.62011165328559]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_10',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 542.0,
   'VIVIEND': 246.0,
   'HOGARES': 227.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.03274961102194,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37343254519378, -34.6248826958173],
     [-58.372380635697134, -34.62478987839701],
     [-58.37207320699823, -34.624770284006416],
     [-58.372064245164104, -34.62494253242026],
     [-58.37202637380742, -34.625925541202875],
     [-58.372021290392446, -34.62605638364827],
     [-58.37195831654997, -34.62701162684568],
     [-58.37195097218822, -34.62718451019869],
     [-58.37218898446281, -34.627198208286664],
     [-58.37326953223157, -34.62722703371121],
     [-58.37329603269387, -34.62714233409642],
     [-58.37336949544216, -34.626004208962485],
     [-58.373371393205346, -34.62590273058219],
     [-58.37343254519378, -34.6248826958173]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_11',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 557.0,
   'VIVIEND': 308.0,
   'HOGARES': 252.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.110735969491124,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36912685046809, -34.625741448364025],
     [-58.367375101554764, -34.62564164041078],
     [-58.367369671663326, -34.62592008932356],
     [-58.367380731093256, -34.62734898358737],
     [-58.36738147534118, -34.62744313990259],
     [-58.36738229294443, -34.62754764847451],
     [-58.367349021045904, -34.627588538311144],
     [-58.36742719918091, -34.62761367003483],
     [-58.36749515794715, -34.62763555426824],
     [-58.367709298270896, -34.62781501851697],
     [-58.36803842600475, -34.62809076967229],
     [-58.36884827502393, -34.62876928848865],
     [-58.36903388419868, -34.62894605234859],
     [-58.36965181676453, -34.62953850202265],
     [-58.369862959230616, -34.62974091808952],
     [-58.370061923673006, -34.6299398738041],
     [-58.37009263658111, -34.62967144422907],
     [-58.370096765833935, -34.62963553157682],
     [-58.370115607000464, -34.62947033325539],
     [-58.370114344416514, -34.62937983859424],
     [-58.37011293069169, -34.62927201973029],
     [-58.37019738030389, -34.62856137366754],
     [-58.37035113887615, -34.627268662306534],
     [-58.3703674344634, -34.627093321021114],
     [-58.37195097218822, -34.62718451019869],
     [-58.37195831654997, -34.62701162684568],
     [-58.372021290392446, -34.62605638364827],
     [-58.37202637380742, -34.625925541202875],
     [-58.37179774517629, -34.62590361028166],
     [-58.37070193803391, -34.62582285845301],
     [-58.370497232128976, -34.62581587284409],
     [-58.36912685046809, -34.625741448364025]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_2',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 388.0,
   'VIVIEND': 297.0,
   'HOGARES': 179.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.033834464655235,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.370855116054855, -34.620715250553744],
     [-58.37082931327374, -34.621016783330276],
     [-58.370821703761024, -34.621119454643086],
     [-58.370748641408326, -34.622098775120996],
     [-58.37073642744042, -34.622282429617826],
     [-58.370936010979065, -34.622291664511316],
     [-58.37220150419193, -34.62233641315],
     [-58.37221294122516, -34.62215923686361],
     [-58.372253768000014, -34.621275103789934],
     [-58.372253883288984, -34.62116883524886],
     [-58.37225393386672, -34.62104369323665],
     [-58.37234164404436, -34.620050861262804],
     [-58.372178949845306, -34.62004250112775],
     [-58.371029636256445, -34.61996340266998],
     [-58.37092026897347, -34.61995423583927],
     [-58.370855116054855, -34.620715250553744]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_3',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 513.0,
   'VIVIEND': 337.0,
   'HOGARES': 221.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.053983397942901,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36915254213308, -34.622205590744386],
     [-58.3691503666607, -34.62315735852445],
     [-58.36916034015701, -34.62337934005445],
     [-58.37067255926108, -34.62349697023175],
     [-58.37072438759959, -34.62246263350249],
     [-58.37073642744042, -34.622282429617826],
     [-58.370748641408326, -34.622098775120996],
     [-58.370821703761024, -34.621119454643086],
     [-58.37082931327374, -34.621016783330276],
     [-58.370855116054855, -34.620715250553744],
     [-58.37092026897347, -34.61995423583927],
     [-58.36966331358696, -34.61984884603676],
     [-58.369510765142394, -34.61983323648858],
     [-58.369501593317736, -34.61996048424972],
     [-58.36940349701827, -34.62099344745654],
     [-58.36937720275283, -34.62112047081756],
     [-58.36915254213308, -34.622205590744386]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_4',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 912.0,
   'VIVIEND': 510.0,
   'HOGARES': 430.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.018374653231509,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37220150419193, -34.62233641315],
     [-58.370936010979065, -34.622291664511316],
     [-58.37073642744042, -34.622282429617826],
     [-58.37072438759959, -34.62246263350249],
     [-58.37067255926108, -34.62349697023175],
     [-58.372135405994854, -34.62358447431804],
     [-58.372139580880585, -34.623505462604285],
     [-58.372190152678925, -34.62251323737756],
     [-58.37220150419193, -34.62233641315]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_5',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 477.0,
   'VIVIEND': 319.0,
   'HOGARES': 226.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.034207238177634,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37220150419193, -34.62233641315],
     [-58.372190152678925, -34.62251323737756],
     [-58.372139580880585, -34.623505462604285],
     [-58.372135405994854, -34.62358447431804],
     [-58.37351218017152, -34.62370478558819],
     [-58.37351033505817, -34.62359802269154],
     [-58.373569547470694, -34.62255629570473],
     [-58.37356691420749, -34.62238988376345],
     [-58.37356364169889, -34.62218396393453],
     [-58.373616639554314, -34.62145575627844],
     [-58.37362755419862, -34.62120646608009],
     [-58.373422595971036, -34.621206809214065],
     [-58.37237841764288, -34.6211759698413],
     [-58.372253883288984, -34.62116883524886],
     [-58.372253768000014, -34.621275103789934],
     [-58.37221294122516, -34.62215923686361],
     [-58.37220150419193, -34.62233641315]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_6',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 752.0,
   'VIVIEND': 404.0,
   'HOGARES': 351.0,
   'HOGARES_': 77.0,
   'AREA_KM': 0.034317773340583,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.372135405994854, -34.62358447431804],
     [-58.37067255926108, -34.62349697023175],
     [-58.37066733149036, -34.623602460216745],
     [-58.37060568320344, -34.624502210631455],
     [-58.370592108167834, -34.624683469625104],
     [-58.370837779363804, -34.62469788036386],
     [-58.37173034199223, -34.62474840887753],
     [-58.37207320699823, -34.624770284006416],
     [-58.372380635697134, -34.62478987839701],
     [-58.37343254519378, -34.6248826958173],
     [-58.37344364811171, -34.62469720930923],
     [-58.373513621346014, -34.62379098461826],
     [-58.37351218017152, -34.62370478558819],
     [-58.372135405994854, -34.62358447431804]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_7',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 418.0,
   'VIVIEND': 271.0,
   'HOGARES': 193.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.018089636974902,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37067255926108, -34.62349697023175],
     [-58.36916034015701, -34.62337934005445],
     [-58.369164829464076, -34.62347814722396],
     [-58.3691618703704, -34.62444505518576],
     [-58.369156066504026, -34.62460667191306],
     [-58.36944024289795, -34.62462111498863],
     [-58.370353677784486, -34.62466941598934],
     [-58.370592108167834, -34.624683469625104],
     [-58.37060568320344, -34.624502210631455],
     [-58.37066733149036, -34.623602460216745],
     [-58.37067255926108, -34.62349697023175]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_8',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 612.0,
   'VIVIEND': 420.0,
   'HOGARES': 321.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.016302013374258,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.370592108167834, -34.624683469625104],
     [-58.370353677784486, -34.62466941598934],
     [-58.36944024289795, -34.62462111498863],
     [-58.369156066504026, -34.62460667191306],
     [-58.36914990952638, -34.62477927437918],
     [-58.36912685046809, -34.625741448364025],
     [-58.370497232128976, -34.62581587284409],
     [-58.37051541695276, -34.625703420805294],
     [-58.370592108167834, -34.624683469625104]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_25_9',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 658.0,
   'VIVIEND': 189.0,
   'HOGARES': 212.0,
   'HOGARES_': 80.0,
   'AREA_KM': 0.017445294009814,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37207320699823, -34.624770284006416],
     [-58.37173034199223, -34.62474840887753],
     [-58.370837779363804, -34.62469788036386],
     [-58.370592108167834, -34.624683469625104],
     [-58.37051541695276, -34.625703420805294],
     [-58.370497232128976, -34.62581587284409],
     [-58.37070193803391, -34.62582285845301],
     [-58.37179774517629, -34.62590361028166],
     [-58.37202637380742, -34.625925541202875],
     [-58.372064245164104, -34.62494253242026],
     [-58.37207320699823, -34.624770284006416]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_1',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 639.0,
   'VIVIEND': 295.0,
   'HOGARES': 249.0,
   'HOGARES_': 102.0,
   'AREA_KM': 0.01729548324631,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37667155748238, -34.62017047164702],
     [-58.376565928633546, -34.62016983372427],
     [-58.3752044464304, -34.6201402729782],
     [-58.37520553052818, -34.62024365505114],
     [-58.37514176500544, -34.621180660660414],
     [-58.375139022981415, -34.62127706807174],
     [-58.37526372442983, -34.621287720999405],
     [-58.37663185603005, -34.621330736618546],
     [-58.376628101100515, -34.62125474732138],
     [-58.37666882336725, -34.620260963564824],
     [-58.37667155748238, -34.62017047164702]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_2',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 677.0,
   'VIVIEND': 405.0,
   'HOGARES': 320.0,
   'HOGARES_': 41.0,
   'AREA_KM': 0.017108946379391,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3752044464304, -34.6201402729782],
     [-58.37383214696213, -34.620110477888105],
     [-58.373705645947744, -34.62011165328559],
     [-58.37369912228341, -34.620237917368506],
     [-58.37363323017843, -34.62107646897204],
     [-58.37362755419862, -34.62120646608009],
     [-58.373735144439095, -34.621206333323215],
     [-58.37502547998686, -34.621267338538686],
     [-58.375139022981415, -34.62127706807174],
     [-58.37514176500544, -34.621180660660414],
     [-58.37520553052818, -34.62024365505114],
     [-58.3752044464304, -34.6201402729782]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_3',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 440.0,
   'VIVIEND': 308.0,
   'HOGARES': 217.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.01811980882064,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.375139022981415, -34.62127706807174],
     [-58.37502547998686, -34.621267338538686],
     [-58.373735144439095, -34.621206333323215],
     [-58.37362755419862, -34.62120646608009],
     [-58.373616639554314, -34.62145575627844],
     [-58.37356364169889, -34.62218396393453],
     [-58.37356691420749, -34.62238988376345],
     [-58.37481834898095, -34.62243980629975],
     [-58.375047918644164, -34.62244968987406],
     [-58.37506011499657, -34.62227378148239],
     [-58.375136103181646, -34.62138051767506],
     [-58.375139022981415, -34.62127706807174]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_4',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 553.0,
   'VIVIEND': 291.0,
   'HOGARES': 244.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.018339449253271,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37663185603005, -34.621330736618546],
     [-58.37526372442983, -34.621287720999405],
     [-58.375139022981415, -34.62127706807174],
     [-58.375136103181646, -34.62138051767506],
     [-58.37506011499657, -34.62227378148239],
     [-58.375047918644164, -34.62244968987406],
     [-58.376382064330116, -34.622507261478546],
     [-58.376602098034354, -34.622512628295226],
     [-58.376614970288024, -34.62233897376685],
     [-58.37663811515745, -34.62145651689249],
     [-58.37663185603005, -34.621330736618546]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_5',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 683.0,
   'VIVIEND': 391.0,
   'HOGARES': 310.0,
   'HOGARES_': 44.0,
   'AREA_KM': 0.04290950317692,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.376602098034354, -34.622512628295226],
     [-58.376382064330116, -34.622507261478546],
     [-58.375047918644164, -34.62244968987406],
     [-58.374959687757034, -34.62372259606208],
     [-58.37495445879896, -34.62383435389376],
     [-58.37494931731348, -34.62394392866743],
     [-58.37487561300709, -34.625010152928674],
     [-58.37615408480542, -34.62556043783628],
     [-58.37646881127669, -34.624046773780805],
     [-58.37648639198883, -34.62393368657652],
     [-58.37650671682412, -34.623803065933636],
     [-58.376602098034354, -34.622512628295226]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_6',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 465.0,
   'VIVIEND': 288.0,
   'HOGARES': 214.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.020132500805654,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.375047918644164, -34.62244968987406],
     [-58.37481834898095, -34.62243980629975],
     [-58.37356691420749, -34.62238988376345],
     [-58.373569547470694, -34.62255629570473],
     [-58.37351033505817, -34.62359802269154],
     [-58.37351218017152, -34.62370478558819],
     [-58.37363015603948, -34.62371459018849],
     [-58.37473911728094, -34.62381933951105],
     [-58.37495445879896, -34.62383435389376],
     [-58.374959687757034, -34.62372259606208],
     [-58.375047918644164, -34.62244968987406]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_7',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 313.0,
   'VIVIEND': 202.0,
   'HOGARES': 142.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.017335751615916,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37495445879896, -34.62383435389376],
     [-58.37473911728094, -34.62381933951105],
     [-58.37363015603948, -34.62371459018849],
     [-58.37351218017152, -34.62370478558819],
     [-58.373513621346014, -34.62379098461826],
     [-58.37344364811171, -34.62469720930923],
     [-58.37343254519378, -34.6248826958173],
     [-58.37487561300709, -34.625010152928674],
     [-58.37494931731348, -34.62394392866743],
     [-58.37495445879896, -34.62383435389376]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_8',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 449.0,
   'VIVIEND': 281.0,
   'HOGARES': 213.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.031167622473508,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37615408480542, -34.62556043783628],
     [-58.37487561300709, -34.625010152928674],
     [-58.37343254519378, -34.6248826958173],
     [-58.373371393205346, -34.62590273058219],
     [-58.37336949544216, -34.626004208962485],
     [-58.37446070371068, -34.62608831381341],
     [-58.37562810388257, -34.626715777943375],
     [-58.37615408480542, -34.62556043783628]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_26_9',
   'BARRIO': 'SAN TELMO',
   'COMUNA': '1',
   'POBLACI': 739.0,
   'VIVIEND': 398.0,
   'HOGARES': 316.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.026402492217779,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37446070371068, -34.62608831381341],
     [-58.37336949544216, -34.626004208962485],
     [-58.37329603269387, -34.62714233409642],
     [-58.37326953223157, -34.62722703371121],
     [-58.373964170478246, -34.62724556934758],
     [-58.37497649335001, -34.62774778477459],
     [-58.37509567929077, -34.62758455917386],
     [-58.375579787624424, -34.62680926538692],
     [-58.37562810388257, -34.626715777943375],
     [-58.37446070371068, -34.62608831381341]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 596.0,
   'VIVIEND': 310.0,
   'HOGARES': 234.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.00808040031125,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38375307953015, -34.62745624320945],
     [-58.383491379458285, -34.62744424246053],
     [-58.38255216543681, -34.627409332871984],
     [-58.38224402759482, -34.62740582012592],
     [-58.382234798752805, -34.6276996193983],
     [-58.382228030652406, -34.627915321016765],
     [-58.38374439751953, -34.62798779147889],
     [-58.38374946644262, -34.62767307373613],
     [-58.38375307953015, -34.62745624320945]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_10',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 513.0,
   'VIVIEND': 366.0,
   'HOGARES': 248.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.017122864238739,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37740975144251, -34.62610174962272],
     [-58.37615408480542, -34.62556043783628],
     [-58.37562810388257, -34.626715777943375],
     [-58.37666584550611, -34.62727356140012],
     [-58.37740975144251, -34.62610174962272]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 780.0,
   'VIVIEND': 199.0,
   'HOGARES': 275.0,
   'HOGARES_': 80.0,
   'AREA_KM': 0.046449066299081,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38374439751953, -34.62798779147889],
     [-58.382228030652406, -34.627915321016765],
     [-58.38222451407334, -34.628028066143706],
     [-58.38221274268546, -34.62830799034887],
     [-58.383554531196864, -34.62858520874809],
     [-58.38373152955059, -34.62862123926579],
     [-58.38401636268965, -34.62867917030742],
     [-58.3848509452953, -34.62883562263948],
     [-58.3850857918202, -34.62887126555975],
     [-58.385299939354695, -34.62890372585394],
     [-58.386427644191514, -34.62909908576781],
     [-58.38644456481345, -34.6289489542337],
     [-58.38657629635189, -34.62780606899102],
     [-58.38658486590184, -34.6275644525254],
     [-58.38635468426459, -34.62755473112391],
     [-58.38513221168967, -34.62750980453959],
     [-58.384072878570954, -34.62747081609499],
     [-58.38375307953015, -34.62745624320945],
     [-58.38374946644262, -34.62767307373613],
     [-58.38374439751953, -34.62798779147889]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 888.0,
   'VIVIEND': 337.0,
   'HOGARES': 293.0,
   'HOGARES_': 106.0,
   'AREA_KM': 0.04193665220882,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3850857918202, -34.62887126555975],
     [-58.3848509452953, -34.62883562263948],
     [-58.38401636268965, -34.62867917030742],
     [-58.38373152955059, -34.62862123926579],
     [-58.38372583401425, -34.62878792713249],
     [-58.38366155639933, -34.629550286269925],
     [-58.38361364869805, -34.63011878105726],
     [-58.38359875479152, -34.630282223448866],
     [-58.383772203503256, -34.63029191335346],
     [-58.38481730139104, -34.630377233736745],
     [-58.384994322286744, -34.630393755226436],
     [-58.38523037863433, -34.63041580697217],
     [-58.38627140176394, -34.63048850657129],
     [-58.386427644191514, -34.62909908576781],
     [-58.385299939354695, -34.62890372585394],
     [-58.3850857918202, -34.62887126555975]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 802.0,
   'VIVIEND': 360.0,
   'HOGARES': 325.0,
   'HOGARES_': 148.0,
   'AREA_KM': 0.039579325896193,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384994322286744, -34.630393755226436],
     [-58.38481730139104, -34.630377233736745],
     [-58.383772203503256, -34.63029191335346],
     [-58.38359875479152, -34.630282223448866],
     [-58.38357929879596, -34.63049481820694],
     [-58.383508540641174, -34.63143956867606],
     [-58.38349654672402, -34.63159906920857],
     [-58.383393212112246, -34.6328428851241],
     [-58.38482005341525, -34.6332669768469],
     [-58.38492481638112, -34.631565903535716],
     [-58.38493632181177, -34.63137914880809],
     [-58.38498932371492, -34.63054649977303],
     [-58.384994322286744, -34.630393755226436]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 641.0,
   'VIVIEND': 364.0,
   'HOGARES': 288.0,
   'HOGARES_': 51.0,
   'AREA_KM': 0.017384259099944,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.383508540641174, -34.63143956867606],
     [-58.383311497642744, -34.63142197565461],
     [-58.382250979902736, -34.631323956047666],
     [-58.382065864196186, -34.63130714353442],
     [-58.382035612929414, -34.631930015828665],
     [-58.38202865816364, -34.63207360391555],
     [-58.382023819302084, -34.63217777003232],
     [-58.38279477964246, -34.63266664809838],
     [-58.383393212112246, -34.6328428851241],
     [-58.38349654672402, -34.63159906920857],
     [-58.383508540641174, -34.63143956867606]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 929.0,
   'VIVIEND': 384.0,
   'HOGARES': 359.0,
   'HOGARES_': 224.0,
   'AREA_KM': 0.044295280442765,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38211988024744, -34.63016012765269],
     [-58.38210385236332, -34.630524063707384],
     [-58.38209715873726, -34.630662159001744],
     [-58.382065864196186, -34.63130714353442],
     [-58.382250979902736, -34.631323956047666],
     [-58.383311497642744, -34.63142197565461],
     [-58.383508540641174, -34.63143956867606],
     [-58.38357929879596, -34.63049481820694],
     [-58.38359875479152, -34.630282223448866],
     [-58.38361364869805, -34.63011878105726],
     [-58.38366155639933, -34.629550286269925],
     [-58.38372583401425, -34.62878792713249],
     [-58.38373152955059, -34.62862123926579],
     [-58.383554531196864, -34.62858520874809],
     [-58.38221274268546, -34.62830799034887],
     [-58.3821621947281, -34.629307049931406],
     [-58.38215315224981, -34.62949563708456],
     [-58.38211988024744, -34.63016012765269]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 866.0,
   'VIVIEND': 252.0,
   'HOGARES': 265.0,
   'HOGARES_': 123.0,
   'AREA_KM': 0.048050811120644,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38156742518447, -34.62828481614775],
     [-58.38119549391093, -34.62826125813136],
     [-58.38083539226505, -34.6282503830855],
     [-58.380799199030506, -34.629276564636804],
     [-58.380793579800944, -34.62944628058974],
     [-58.38075672801917, -34.63062126551259],
     [-58.38073964377344, -34.63118689241269],
     [-58.38072969565036, -34.6313462321692],
     [-58.380948560812705, -34.63148791000861],
     [-58.38162129023881, -34.63193565361574],
     [-58.382024557121596, -34.63220407002251],
     [-58.382023819302084, -34.63217777003232],
     [-58.38202865816364, -34.63207360391555],
     [-58.382035612929414, -34.631930015828665],
     [-58.382065864196186, -34.63130714353442],
     [-58.38209715873726, -34.630662159001744],
     [-58.38210385236332, -34.630524063707384],
     [-58.38211988024744, -34.63016012765269],
     [-58.38215315224981, -34.62949563708456],
     [-58.3821621947281, -34.629307049931406],
     [-58.38221274268546, -34.62830799034887],
     [-58.38183372456569, -34.62830041565379],
     [-58.38156742518447, -34.62828481614775]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 694.0,
   'VIVIEND': 363.0,
   'HOGARES': 255.0,
   'HOGARES_': 50.0,
   'AREA_KM': 0.19906836051327,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37666584550611, -34.62727356140012],
     [-58.37562810388257, -34.626715777943375],
     [-58.375579787624424, -34.62680926538692],
     [-58.37509567929077, -34.62758455917386],
     [-58.37497649335001, -34.62774778477459],
     [-58.37599336042131, -34.62831982565985],
     [-58.37710720207088, -34.628939418889985],
     [-58.37732996918471, -34.62906646510544],
     [-58.37848580815796, -34.62976429498714],
     [-58.378384628193636, -34.63000583770578],
     [-58.378165484491134, -34.63055125714652],
     [-58.378139000316786, -34.63062370416546],
     [-58.37806364857912, -34.63082956906203],
     [-58.3780262058662, -34.63093206073015],
     [-58.37844597865155, -34.63172150323645],
     [-58.378874246622594, -34.63248035322976],
     [-58.378929071939304, -34.632606870757485],
     [-58.378913429843564, -34.63265749421032],
     [-58.37898099595438, -34.63273810461317],
     [-58.37903911582752, -34.63280814503635],
     [-58.37949550745084, -34.63307824805285],
     [-58.37951670549789, -34.63317995343704],
     [-58.37954665372334, -34.633477793046836],
     [-58.37969557728555, -34.633481556486934],
     [-58.38047171095488, -34.63350835001896],
     [-58.380653687747525, -34.63351614868394],
     [-58.38068395387739, -34.632802712829566],
     [-58.38072749103005, -34.631563464233544],
     [-58.38072969565036, -34.6313462321692],
     [-58.38073964377344, -34.63118689241269],
     [-58.38075672801917, -34.63062126551259],
     [-58.380793579800944, -34.62944628058974],
     [-58.380799199030506, -34.629276564636804],
     [-58.38083539226505, -34.6282503830855],
     [-58.38119549391093, -34.62826125813136],
     [-58.38156742518447, -34.62828481614775],
     [-58.38183372456569, -34.62830041565379],
     [-58.38221274268546, -34.62830799034887],
     [-58.38222451407334, -34.628028066143706],
     [-58.382228030652406, -34.627915321016765],
     [-58.382234798752805, -34.6276996193983],
     [-58.38224402759482, -34.62740582012592],
     [-58.38163355727011, -34.62738626083697],
     [-58.38154131878186, -34.62736063589792],
     [-58.37958516055396, -34.62681741253613],
     [-58.379439452154, -34.62710358326899],
     [-58.37934054613439, -34.627357039044924],
     [-58.37916946647384, -34.6277953060714],
     [-58.37913291003787, -34.62788894380728],
     [-58.37905627000776, -34.62811009035163],
     [-58.37794524492235, -34.62779516580206],
     [-58.37789688327088, -34.62793520381093],
     [-58.37666584550611, -34.62727356140012]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_27_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 723.0,
   'VIVIEND': 344.0,
   'HOGARES': 324.0,
   'HOGARES_': 115.0,
   'AREA_KM': 0.034254684167922,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3784125285274, -34.62653083072465],
     [-58.37740975144251, -34.62610174962272],
     [-58.37666584550611, -34.62727356140012],
     [-58.37789688327088, -34.62793520381093],
     [-58.37794524492235, -34.62779516580206],
     [-58.37905627000776, -34.62811009035163],
     [-58.37913291003787, -34.62788894380728],
     [-58.37916946647384, -34.6277953060714],
     [-58.37934054613439, -34.627357039044924],
     [-58.379439452154, -34.62710358326899],
     [-58.37958516055396, -34.62681741253613],
     [-58.3794582556113, -34.626786410234494],
     [-58.3784125285274, -34.62653083072465]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 512.0,
   'VIVIEND': 277.0,
   'HOGARES': 220.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.057380286768794,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38929052800113, -34.62308212649707],
     [-58.38805392060227, -34.62300637533544],
     [-58.38770262464565, -34.622984892053495],
     [-58.38694901092541, -34.622936186502066],
     [-58.386582723201066, -34.62291391602925],
     [-58.38657704739318, -34.62315898522292],
     [-58.386579445215254, -34.62379828848082],
     [-58.38658095906621, -34.62419287055183],
     [-58.38786848407307, -34.624315217614516],
     [-58.38891929133262, -34.624415013565574],
     [-58.38915857670569, -34.624428327198174],
     [-58.38942699551257, -34.62444327759822],
     [-58.3905524422532, -34.62443317370084],
     [-58.39083433273524, -34.62443481898932],
     [-58.390860374719345, -34.62387187135389],
     [-58.39089146815434, -34.62318019302479],
     [-58.38929052800113, -34.62308212649707]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_10',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 909.0,
   'VIVIEND': 413.0,
   'HOGARES': 353.0,
   'HOGARES_': 97.0,
   'AREA_KM': 0.046643032890715,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38376599773654, -34.62649948262128],
     [-58.38375696224803, -34.627224553564865],
     [-58.38375307953015, -34.62745624320945],
     [-58.384072878570954, -34.62747081609499],
     [-58.38513221168967, -34.62750980453959],
     [-58.38635468426459, -34.62755473112391],
     [-58.38658486590184, -34.6275644525254],
     [-58.38659378459378, -34.6273136108347],
     [-58.38660646227035, -34.626771219617105],
     [-58.386609837583485, -34.626620023203806],
     [-58.38641535551836, -34.626608493179155],
     [-58.38539317826407, -34.626567919701515],
     [-58.38515448062695, -34.62655790894541],
     [-58.38518546686754, -34.62520904331956],
     [-58.38494268434692, -34.62519867743775],
     [-58.38378268794573, -34.625157509573896],
     [-58.38378101757556, -34.62530215768996],
     [-58.38376599773654, -34.62649948262128]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_11',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 610.0,
   'VIVIEND': 251.0,
   'HOGARES': 249.0,
   'HOGARES_': 153.0,
   'AREA_KM': 0.01948816906257,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38659017304441, -34.62529767514912],
     [-58.38637840327863, -34.62528303565764],
     [-58.38532849557858, -34.62521519051852],
     [-58.38518546686754, -34.62520904331956],
     [-58.38515448062695, -34.62655790894541],
     [-58.38539317826407, -34.626567919701515],
     [-58.38641535551836, -34.626608493179155],
     [-58.386609837583485, -34.626620023203806],
     [-58.386614277608416, -34.62642234816499],
     [-58.38659017304441, -34.62529767514912]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_12',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 573.0,
   'VIVIEND': 264.0,
   'HOGARES': 235.0,
   'HOGARES_': 75.0,
   'AREA_KM': 0.01514371801478,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38779212970821, -34.62538553265498],
     [-58.38758266389594, -34.62536617831635],
     [-58.38659017304441, -34.62529767514912],
     [-58.386614277608416, -34.62642234816499],
     [-58.386609837583485, -34.626620023203806],
     [-58.38674162583712, -34.626623626500084],
     [-58.38771074276802, -34.6266500010148],
     [-58.38779212970821, -34.62538553265498]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_13',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 652.0,
   'VIVIEND': 277.0,
   'HOGARES': 261.0,
   'HOGARES_': 113.0,
   'AREA_KM': 0.058876910895862,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39073197182891, -34.62567491081844],
     [-58.38905598768169, -34.625512711835796],
     [-58.38896913266774, -34.6264313295824],
     [-58.38893690268987, -34.626655044477346],
     [-58.38771074276802, -34.6266500010148],
     [-58.38674162583712, -34.626623626500084],
     [-58.386609837583485, -34.626620023203806],
     [-58.38660646227035, -34.626771219617105],
     [-58.38659378459378, -34.6273136108347],
     [-58.38658486590184, -34.6275644525254],
     [-58.38669254530517, -34.62756895632948],
     [-58.38690568920332, -34.62757789185304],
     [-58.38769854761718, -34.6276109174389],
     [-58.38808718224933, -34.6276270714159],
     [-58.3882143710025, -34.6276315153857],
     [-58.38866681559727, -34.62764721350309],
     [-58.388840773081306, -34.627654079583834],
     [-58.389073426377884, -34.62766323440084],
     [-58.389651191477355, -34.62767710302262],
     [-58.39057278765983, -34.6276992713685],
     [-58.390589240246015, -34.6274903356125],
     [-58.39062162835187, -34.627079013119975],
     [-58.39064523027278, -34.62677909483896],
     [-58.39073197182891, -34.62567491081844]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 753.0,
   'VIVIEND': 371.0,
   'HOGARES': 345.0,
   'HOGARES_': 168.0,
   'AREA_KM': 0.019784657313474,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39083433273524, -34.62443481898932],
     [-58.3905524422532, -34.62443317370084],
     [-58.38942699551257, -34.62444327759822],
     [-58.38915857670569, -34.624428327198174],
     [-58.38905598768169, -34.625512711835796],
     [-58.39073197182891, -34.62567491081844],
     [-58.39080613411554, -34.62473219948004],
     [-58.39083433273524, -34.62443481898932]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 677.0,
   'VIVIEND': 264.0,
   'HOGARES': 241.0,
   'HOGARES_': 74.0,
   'AREA_KM': 0.043214673222363,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38915857670569, -34.624428327198174],
     [-58.38891929133262, -34.624415013565574],
     [-58.38786848407307, -34.624315217614516],
     [-58.38658095906621, -34.62419287055183],
     [-58.386582150962255, -34.624473578110155],
     [-58.38658287429633, -34.62470766521782],
     [-58.386586904842446, -34.62514499566761],
     [-58.38659017304441, -34.62529767514912],
     [-58.38758266389594, -34.62536617831635],
     [-58.38779212970821, -34.62538553265498],
     [-58.38771074276802, -34.6266500010148],
     [-58.38893690268987, -34.626655044477346],
     [-58.38896913266774, -34.6264313295824],
     [-58.38905598768169, -34.625512711835796],
     [-58.38915857670569, -34.624428327198174]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 661.0,
   'VIVIEND': 323.0,
   'HOGARES': 280.0,
   'HOGARES_': 62.0,
   'AREA_KM': 0.033165842440699,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.386582723201066, -34.62291391602925],
     [-58.38626260495783, -34.62289441990076],
     [-58.38523299184578, -34.62283764309181],
     [-58.385230494267546, -34.623050178723666],
     [-58.385216938329044, -34.62370362694107],
     [-58.38521015814878, -34.62403263977494],
     [-58.385202935794645, -34.624379046835955],
     [-58.38518839588513, -34.62508242431301],
     [-58.38518546686754, -34.62520904331956],
     [-58.38532849557858, -34.62521519051852],
     [-58.38637840327863, -34.62528303565764],
     [-58.38659017304441, -34.62529767514912],
     [-58.386586904842446, -34.62514499566761],
     [-58.38658287429633, -34.62470766521782],
     [-58.386582150962255, -34.624473578110155],
     [-58.38658095906621, -34.62419287055183],
     [-58.386579445215254, -34.62379828848082],
     [-58.38657704739318, -34.62315898522292],
     [-58.386582723201066, -34.62291391602925]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 805.0,
   'VIVIEND': 460.0,
   'HOGARES': 354.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.041804783474468,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38523299184578, -34.62283764309181],
     [-58.38417467328853, -34.62277936023037],
     [-58.38379449781894, -34.62276087529776],
     [-58.38265346117501, -34.62270555390276],
     [-58.382364434144215, -34.62269022291204],
     [-58.38235404902745, -34.62436149925598],
     [-58.382499288552225, -34.62437018646272],
     [-58.38379102396961, -34.62445088880209],
     [-58.38379695862862, -34.62394109920679],
     [-58.38521015814878, -34.62403263977494],
     [-58.385216938329044, -34.62370362694107],
     [-58.385230494267546, -34.623050178723666],
     [-58.38523299184578, -34.62283764309181]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 632.0,
   'VIVIEND': 320.0,
   'HOGARES': 281.0,
   'HOGARES_': 122.0,
   'AREA_KM': 0.017141617672202,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38521015814878, -34.62403263977494],
     [-58.38379695862862, -34.62394109920679],
     [-58.38379102396961, -34.62445088880209],
     [-58.38378268794573, -34.625157509573896],
     [-58.38494268434692, -34.62519867743775],
     [-58.38518546686754, -34.62520904331956],
     [-58.38518839588513, -34.62508242431301],
     [-58.385202935794645, -34.624379046835955],
     [-58.38521015814878, -34.62403263977494]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 727.0,
   'VIVIEND': 347.0,
   'HOGARES': 314.0,
   'HOGARES_': 77.0,
   'AREA_KM': 0.048509696969375,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38235404902745, -34.62436149925598],
     [-58.382364434144215, -34.62269022291204],
     [-58.380830368973555, -34.622609272642094],
     [-58.38084127040597, -34.622785408382036],
     [-58.38084775773844, -34.62337943239216],
     [-58.38085518009476, -34.62406240145382],
     [-58.3808494474671, -34.624261343100194],
     [-58.38084530091435, -34.62440662334079],
     [-58.38082572907337, -34.62507837688683],
     [-58.38151100361973, -34.62510160700725],
     [-58.381890741431405, -34.62511380570452],
     [-58.382330052865804, -34.625128462273715],
     [-58.38354774130746, -34.625149188257154],
     [-58.38378268794573, -34.625157509573896],
     [-58.38379102396961, -34.62445088880209],
     [-58.382499288552225, -34.62437018646272],
     [-58.38235404902745, -34.62436149925598]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 306.0,
   'VIVIEND': 96.0,
   'HOGARES': 110.0,
   'HOGARES_': 20.0,
   'AREA_KM': 0.050559920156777,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38082572907337, -34.62507837688683],
     [-58.380292934984304, -34.62509372247609],
     [-58.37975050054926, -34.62649252223123],
     [-58.37958516055396, -34.62681741253613],
     [-58.38154131878186, -34.62736063589792],
     [-58.38163355727011, -34.62738626083697],
     [-58.38224402759482, -34.62740582012592],
     [-58.382250707766666, -34.627192864933214],
     [-58.38227980610966, -34.62643696199288],
     [-58.382330052865804, -34.625128462273715],
     [-58.381890741431405, -34.62511380570452],
     [-58.38151100361973, -34.62510160700725],
     [-58.38082572907337, -34.62507837688683]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_28_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 741.0,
   'VIVIEND': 304.0,
   'HOGARES': 262.0,
   'HOGARES_': 67.0,
   'AREA_KM': 0.034481780158196,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38227980610966, -34.62643696199288],
     [-58.382250707766666, -34.627192864933214],
     [-58.38224402759482, -34.62740582012592],
     [-58.38255216543681, -34.627409332871984],
     [-58.383491379458285, -34.62744424246053],
     [-58.38375307953015, -34.62745624320945],
     [-58.38375696224803, -34.627224553564865],
     [-58.38376599773654, -34.62649948262128],
     [-58.38378101757556, -34.62530215768996],
     [-58.38378268794573, -34.625157509573896],
     [-58.38354774130746, -34.625149188257154],
     [-58.382330052865804, -34.625128462273715],
     [-58.38227980610966, -34.62643696199288]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_1',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 1123.0,
   'VIVIEND': 454.0,
   'HOGARES': 420.0,
   'HOGARES_': 141.0,
   'AREA_KM': 0.033738669956222,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39057278765983, -34.6276992713685],
     [-58.389651191477355, -34.62767710302262],
     [-58.389073426377884, -34.62766323440084],
     [-58.388840773081306, -34.627654079583834],
     [-58.38882892629591, -34.62785196145109],
     [-58.388772224242985, -34.628579257297964],
     [-58.388715952286724, -34.629300778594946],
     [-58.38869618780785, -34.629491965395445],
     [-58.389451238039044, -34.62962270394437],
     [-58.390328271383176, -34.6297745667706],
     [-58.390464454120206, -34.62864569429458],
     [-58.39057278765983, -34.6276992713685]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_2',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 624.0,
   'VIVIEND': 250.0,
   'HOGARES': 266.0,
   'HOGARES_': 142.0,
   'AREA_KM': 0.039089646039605,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3882143710025, -34.6276315153857],
     [-58.38808718224933, -34.6276270714159],
     [-58.38769854761718, -34.6276109174389],
     [-58.38690568920332, -34.62757789185304],
     [-58.38669254530517, -34.62756895632948],
     [-58.38658486590184, -34.6275644525254],
     [-58.38657629635189, -34.62780606899102],
     [-58.38644456481345, -34.6289489542337],
     [-58.386427644191514, -34.62909908576781],
     [-58.38749785715598, -34.62928439973621],
     [-58.38869618780785, -34.629491965395445],
     [-58.388715952286724, -34.629300778594946],
     [-58.388772224242985, -34.628579257297964],
     [-58.38882892629591, -34.62785196145109],
     [-58.388840773081306, -34.627654079583834],
     [-58.38866681559727, -34.62764721350309],
     [-58.3882143710025, -34.6276315153857]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_3',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 817.0,
   'VIVIEND': 300.0,
   'HOGARES': 276.0,
   'HOGARES_': 124.0,
   'AREA_KM': 0.014749606555805,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38749785715598, -34.62928439973621],
     [-58.386427644191514, -34.62909908576781],
     [-58.38627140176394, -34.63048850657129],
     [-58.387344458259776, -34.63056347062006],
     [-58.38749785715598, -34.62928439973621]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_4',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 723.0,
   'VIVIEND': 295.0,
   'HOGARES': 272.0,
   'HOGARES_': 71.0,
   'AREA_KM': 0.030418847646184,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.387344458259776, -34.63056347062006],
     [-58.38733037955657, -34.63068135021108],
     [-58.3872298513356, -34.63161897170693],
     [-58.38720782154895, -34.63176712827554],
     [-58.38738425038963, -34.63178266000541],
     [-58.388432687384444, -34.631874712084425],
     [-58.388565492634605, -34.63064872661092],
     [-58.38858731177988, -34.630446977649704],
     [-58.38868372714752, -34.62961294476409],
     [-58.38869618780785, -34.629491965395445],
     [-58.38749785715598, -34.62928439973621],
     [-58.387344458259776, -34.63056347062006]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_5',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 804.0,
   'VIVIEND': 335.0,
   'HOGARES': 306.0,
   'HOGARES_': 114.0,
   'AREA_KM': 0.038646688146293,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389451238039044, -34.62962270394437],
     [-58.38869618780785, -34.629491965395445],
     [-58.38868372714752, -34.62961294476409],
     [-58.38858731177988, -34.630446977649704],
     [-58.388565492634605, -34.63064872661092],
     [-58.388432687384444, -34.631874712084425],
     [-58.388635781351425, -34.63189251177656],
     [-58.39006540068719, -34.63197604822827],
     [-58.39018598282446, -34.63096456251174],
     [-58.39029300232268, -34.630066872218386],
     [-58.390328271383176, -34.6297745667706],
     [-58.389451238039044, -34.62962270394437]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_6',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 990.0,
   'VIVIEND': 349.0,
   'HOGARES': 323.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.032745866017796,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39006540068719, -34.63197604822827],
     [-58.388635781351425, -34.63189251177656],
     [-58.388432687384444, -34.631874712084425],
     [-58.38738425038963, -34.63178266000541],
     [-58.38720782154895, -34.63176712827554],
     [-58.38718896305365, -34.631894230293824],
     [-58.387121071071945, -34.63291644983737],
     [-58.387321957748256, -34.63292805311636],
     [-58.388134620274464, -34.632975524843395],
     [-58.388306112555874, -34.632988587412484],
     [-58.38992979695132, -34.63311231440089],
     [-58.38996026449735, -34.632857823541414],
     [-58.39006540068719, -34.63197604822827]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_7',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 916.0,
   'VIVIEND': 388.0,
   'HOGARES': 328.0,
   'HOGARES_': 58.0,
   'AREA_KM': 0.035380315618157,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38992979695132, -34.63311231440089],
     [-58.388306112555874, -34.632988587412484],
     [-58.388134620274464, -34.632975524843395],
     [-58.387321957748256, -34.63292805311636],
     [-58.387121071071945, -34.63291644983737],
     [-58.38705550859025, -34.6339047266929],
     [-58.38795984052384, -34.63415810304413],
     [-58.38816666214285, -34.634205624334676],
     [-58.38891839441146, -34.63437819538433],
     [-58.389755567951376, -34.63457046096386],
     [-58.38992979695132, -34.63311231440089]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_8',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 648.0,
   'VIVIEND': 279.0,
   'HOGARES': 260.0,
   'HOGARES_': 103.0,
   'AREA_KM': 0.036150489169578,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.387344458259776, -34.63056347062006],
     [-58.38627140176394, -34.63048850657129],
     [-58.38613826041431, -34.63167293971702],
     [-58.38600614643839, -34.63284779558982],
     [-58.38592299330523, -34.633587396896736],
     [-58.38667084314372, -34.63380188109532],
     [-58.38705550859025, -34.6339047266929],
     [-58.387121071071945, -34.63291644983737],
     [-58.38718896305365, -34.631894230293824],
     [-58.38720782154895, -34.63176712827554],
     [-58.3872298513356, -34.63161897170693],
     [-58.38733037955657, -34.63068135021108],
     [-58.387344458259776, -34.63056347062006]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_29_9',
   'BARRIO': 'CONSTITUCION',
   'COMUNA': '1',
   'POBLACI': 923.0,
   'VIVIEND': 433.0,
   'HOGARES': 376.0,
   'HOGARES_': 64.0,
   'AREA_KM': 0.036622732355982,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38627140176394, -34.63048850657129],
     [-58.38523037863433, -34.63041580697217],
     [-58.384994322286744, -34.630393755226436],
     [-58.38498932371492, -34.63054649977303],
     [-58.38493632181177, -34.63137914880809],
     [-58.38492481638112, -34.631565903535716],
     [-58.38482005341525, -34.6332669768469],
     [-58.38592299330523, -34.633587396896736],
     [-58.38600614643839, -34.63284779558982],
     [-58.38613826041431, -34.63167293971702],
     [-58.38627140176394, -34.63048850657129]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 631.0,
   'VIVIEND': 362.0,
   'HOGARES': 257.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.036298171984076,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38124825474437, -34.592039679041584],
     [-58.38096067339409, -34.592048148853316],
     [-58.38101881967919, -34.59328214921395],
     [-58.38137001009027, -34.593281820387226],
     [-58.381613646270985, -34.59328163040142],
     [-58.38223998123436, -34.593281059044635],
     [-58.382418812426984, -34.59328089512935],
     [-58.383846573124586, -34.593272670998644],
     [-58.38383916223976, -34.593184848049965],
     [-58.38373540094289, -34.59196645350541],
     [-58.38255186534453, -34.592001245831554],
     [-58.38248595249161, -34.59200317438382],
     [-58.3822966445906, -34.59200875411123],
     [-58.38213586483736, -34.59201350729925],
     [-58.38156853708557, -34.59203017394365],
     [-58.38146609103638, -34.59203320442816],
     [-58.38124825474437, -34.592039679041584]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_2',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 533.0,
   'VIVIEND': 430.0,
   'HOGARES': 240.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.043363575154945,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38223998123436, -34.593281059044635],
     [-58.381613646270985, -34.59328163040142],
     [-58.38137001009027, -34.593281820387226],
     [-58.38101881967919, -34.59328214921395],
     [-58.38102707832825, -34.59345786147616],
     [-58.380996043659884, -34.59462666008051],
     [-58.38110852727486, -34.594638355223005],
     [-58.38142596793402, -34.594671384420586],
     [-58.381820725535576, -34.594712421919795],
     [-58.38189342045495, -34.5948323309191],
     [-58.38198813139956, -34.59508211541192],
     [-58.382074604728494, -34.59486808506633],
     [-58.38217452601789, -34.59474927613384],
     [-58.38235589682288, -34.594768128340846],
     [-58.38381703792753, -34.59487901273145],
     [-58.3838198730551, -34.594762604475925],
     [-58.3838701524989, -34.59355297193061],
     [-58.383846573124586, -34.593272670998644],
     [-58.382418812426984, -34.59328089512935],
     [-58.38223998123436, -34.593281059044635]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_3',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 928.0,
   'VIVIEND': 643.0,
   'HOGARES': 405.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.026994893921435,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38590747286106, -34.59327271766599],
     [-58.38565507535041, -34.593262206314456],
     [-58.383846573124586, -34.593272670998644],
     [-58.3838701524989, -34.59355297193061],
     [-58.3838198730551, -34.594762604475925],
     [-58.38381703792753, -34.59487901273145],
     [-58.385223405884915, -34.595010971921546],
     [-58.38523133971875, -34.59490414447096],
     [-58.385482982831995, -34.59361844066913],
     [-58.38590747286106, -34.59327271766599]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_4',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1200.0,
   'VIVIEND': 698.0,
   'HOGARES': 490.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.025718359577104,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38696989508225, -34.59327753659437],
     [-58.386432292855545, -34.59327980745796],
     [-58.38610818165247, -34.59328115378183],
     [-58.38590747286106, -34.59327271766599],
     [-58.385482982831995, -34.59361844066913],
     [-58.38523133971875, -34.59490414447096],
     [-58.385223405884915, -34.595010971921546],
     [-58.385316052077606, -34.59501877729541],
     [-58.38654305902747, -34.59507905710386],
     [-58.38669352437879, -34.59509161587873],
     [-58.38671260451591, -34.59499324609704],
     [-58.38696989508225, -34.59327753659437]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_5',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 637.0,
   'VIVIEND': 389.0,
   'HOGARES': 242.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.01624206874637,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38669352437879, -34.59509161587873],
     [-58.38654305902747, -34.59507905710386],
     [-58.385316052077606, -34.59501877729541],
     [-58.385223405884915, -34.595010971921546],
     [-58.38515751674401, -34.595901365047915],
     [-58.385151431590664, -34.596126364304254],
     [-58.385393529558314, -34.596140884314195],
     [-58.38655960167717, -34.59617527990942],
     [-58.386581735811845, -34.59599691096043],
     [-58.38667375932734, -34.5951939289464],
     [-58.38669352437879, -34.59509161587873]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_6',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 888.0,
   'VIVIEND': 641.0,
   'HOGARES': 365.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.016534687466312,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385223405884915, -34.595010971921546],
     [-58.38381703792753, -34.59487901273145],
     [-58.38381385163618, -34.59500654767439],
     [-58.383718663931006, -34.59588466737854],
     [-58.38370344396881, -34.596039518830594],
     [-58.385151431590664, -34.596126364304254],
     [-58.38515751674401, -34.595901365047915],
     [-58.385223405884915, -34.595010971921546]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_5_7',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 597.0,
   'VIVIEND': 563.0,
   'HOGARES': 270.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.033179776046441,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38381703792753, -34.59487901273145],
     [-58.38235589682288, -34.594768128340846],
     [-58.38217452601789, -34.59474927613384],
     [-58.382074604728494, -34.59486808506633],
     [-58.38198813139956, -34.59508211541192],
     [-58.38189342045495, -34.5948323309191],
     [-58.381820725535576, -34.594712421919795],
     [-58.38142596793402, -34.594671384420586],
     [-58.38110852727486, -34.594638355223005],
     [-58.380996043659884, -34.59462666008051],
     [-58.38089634628817, -34.59564484696907],
     [-58.38088809508373, -34.595809069070896],
     [-58.381375852531626, -34.595850381591],
     [-58.38142660382792, -34.595854711237415],
     [-58.381814817605324, -34.595887575265934],
     [-58.38212094385043, -34.59591348237762],
     [-58.38370344396881, -34.596039518830594],
     [-58.383718663931006, -34.59588466737854],
     [-58.38381385163618, -34.59500654767439],
     [-58.38381703792753, -34.59487901273145]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 948.0,
   'VIVIEND': 513.0,
   'HOGARES': 326.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.051975073151469,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38030905088542, -34.589725000487846],
     [-58.37894303061675, -34.590468518242986],
     [-58.37885339410119, -34.590521978605416],
     [-58.37954682204853, -34.59179176741209],
     [-58.37954152031242, -34.591899370995556],
     [-58.379477471338625, -34.5931918811614],
     [-58.3794815293824, -34.593306885571856],
     [-58.38082772579387, -34.59328230285106],
     [-58.38101881967919, -34.59328214921395],
     [-58.38096067339409, -34.592048148853316],
     [-58.3809496612221, -34.591814898654036],
     [-58.38094982376018, -34.59104038041226],
     [-58.38084019404243, -34.590815374043345],
     [-58.38030905088542, -34.589725000487846]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_10',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 415.0,
   'VIVIEND': 354.0,
   'HOGARES': 193.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.018639630316406,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.379437446715016, -34.59455814084354],
     [-58.37937604758545, -34.594557676393485],
     [-58.37936216945156, -34.59515183017703],
     [-58.379353893933754, -34.59550795625119],
     [-58.379357559086, -34.595675214600426],
     [-58.38062957024557, -34.5957871346071],
     [-58.38088809508373, -34.595809069070896],
     [-58.38089634628817, -34.59564484696907],
     [-58.380996043659884, -34.59462666008051],
     [-58.38079364136006, -34.594605608608525],
     [-58.379567398182, -34.59455921537136],
     [-58.379437446715016, -34.59455814084354]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_2',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 641.0,
   'VIVIEND': 425.0,
   'HOGARES': 210.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.017492788871698,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37954152031242, -34.591899370995556],
     [-58.37943338104534, -34.591890212618715],
     [-58.378993039058436, -34.59188941840394],
     [-58.378864823586525, -34.59194454245784],
     [-58.37879921387182, -34.591983723288074],
     [-58.37873793027573, -34.592039597441826],
     [-58.37870553260705, -34.59207760386672],
     [-58.378174515516655, -34.59273224665973],
     [-58.37811760451007, -34.59275798224522],
     [-58.378062833250624, -34.59277301490913],
     [-58.37797527120939, -34.592793236129204],
     [-58.37798460035566, -34.59333416583619],
     [-58.3794815293824, -34.593306885571856],
     [-58.379477471338625, -34.5931918811614],
     [-58.37954152031242, -34.591899370995556]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_3',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1160.0,
   'VIVIEND': 685.0,
   'HOGARES': 426.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.026166936273158,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37885339410119, -34.590521978605416],
     [-58.37885604307127, -34.59051823230804],
     [-58.378152913166794, -34.590939740901064],
     [-58.37725911957066, -34.59152609880189],
     [-58.37797527120939, -34.592793236129204],
     [-58.378062833250624, -34.59277301490913],
     [-58.37811760451007, -34.59275798224522],
     [-58.378174515516655, -34.59273224665973],
     [-58.37870553260705, -34.59207760386672],
     [-58.37873793027573, -34.592039597441826],
     [-58.37879921387182, -34.591983723288074],
     [-58.378864823586525, -34.59194454245784],
     [-58.378993039058436, -34.59188941840394],
     [-58.37943338104534, -34.591890212618715],
     [-58.37954152031242, -34.591899370995556],
     [-58.37954682204853, -34.59179176741209],
     [-58.37885339410119, -34.590521978605416]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_4',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 789.0,
   'VIVIEND': 704.0,
   'HOGARES': 397.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.0233349435848,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37725911957066, -34.59152609880189],
     [-58.376533185269615, -34.59200235586842],
     [-58.37607379683378, -34.592301682847655],
     [-58.37649052329465, -34.593320091134984],
     [-58.37725932598129, -34.5933208431055],
     [-58.37798460035566, -34.59333416583619],
     [-58.37797527120939, -34.592793236129204],
     [-58.37725911957066, -34.59152609880189]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_5',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 332.0,
   'VIVIEND': 331.0,
   'HOGARES': 169.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.01067318091476,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37607379683378, -34.592301682847655],
     [-58.37484371703338, -34.593103279759184],
     [-58.37469084041968, -34.59320204425002],
     [-58.374551853577174, -34.59329187479206],
     [-58.374444907687874, -34.59336095340763],
     [-58.37491200752827, -34.59335164230255],
     [-58.375097484929, -34.59334790229705],
     [-58.37649052329465, -34.593320091134984],
     [-58.37607379683378, -34.592301682847655]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_6',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 569.0,
   'VIVIEND': 396.0,
   'HOGARES': 252.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.045878246325076,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37649052329465, -34.593320091134984],
     [-58.375097484929, -34.59334790229705],
     [-58.375352946071025, -34.59368478034023],
     [-58.375138065708825, -34.59379131799693],
     [-58.37607185330405, -34.59491242275676],
     [-58.37626847507277, -34.595005309954615],
     [-58.37643523873114, -34.59498444174844],
     [-58.37665273981382, -34.594980510746296],
     [-58.37687501927126, -34.59505017529483],
     [-58.37703795677608, -34.595189305807324],
     [-58.37706256494046, -34.595275169346294],
     [-58.37709212079782, -34.59535286722244],
     [-58.377089014282376, -34.59547561322913],
     [-58.37790485808521, -34.59554738104353],
     [-58.37790772123373, -34.59541153607367],
     [-58.37792014653197, -34.59508414577561],
     [-58.37794053521331, -34.594546053805956],
     [-58.377980783589436, -34.593486841418],
     [-58.37798460035566, -34.59333416583619],
     [-58.37725932598129, -34.5933208431055],
     [-58.37649052329465, -34.593320091134984]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_7',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 498.0,
   'VIVIEND': 387.0,
   'HOGARES': 227.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.015561934228854,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37937604758545, -34.594557676393485],
     [-58.37794053521331, -34.594546053805956],
     [-58.37792014653197, -34.59508414577561],
     [-58.37790772123373, -34.59541153607367],
     [-58.37790485808521, -34.59554738104353],
     [-58.379357559086, -34.595675214600426],
     [-58.379353893933754, -34.59550795625119],
     [-58.37936216945156, -34.59515183017703],
     [-58.37937604758545, -34.594557676393485]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_8',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 730.0,
   'VIVIEND': 511.0,
   'HOGARES': 296.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.018796947498559,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3794815293824, -34.593306885571856],
     [-58.37798460035566, -34.59333416583619],
     [-58.377980783589436, -34.593486841418],
     [-58.37794053521331, -34.594546053805956],
     [-58.37937604758545, -34.594557676393485],
     [-58.379437446715016, -34.59455814084354],
     [-58.37948542196673, -34.59341703064294],
     [-58.3794815293824, -34.593306885571856]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_6_9',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1046.0,
   'VIVIEND': 602.0,
   'HOGARES': 419.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.020382719653839,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38101881967919, -34.59328214921395],
     [-58.38082772579387, -34.59328230285106],
     [-58.3794815293824, -34.593306885571856],
     [-58.37948542196673, -34.59341703064294],
     [-58.379437446715016, -34.59455814084354],
     [-58.379567398182, -34.59455921537136],
     [-58.38079364136006, -34.594605608608525],
     [-58.380996043659884, -34.59462666008051],
     [-58.38102707832825, -34.59345786147616],
     [-58.38101881967919, -34.59328214921395]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 669.0,
   'VIVIEND': 620.0,
   'HOGARES': 264.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.019097556188151,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.379357559086, -34.595675214600426],
     [-58.37790485808521, -34.59554738104353],
     [-58.37790038726301, -34.595756817462764],
     [-58.377839653679096, -34.596692140246155],
     [-58.37784148770065, -34.59681474883441],
     [-58.37930432719221, -34.596960266363226],
     [-58.37936154709942, -34.595860290313745],
     [-58.379357559086, -34.595675214600426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_10',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 384.0,
   'VIVIEND': 853.0,
   'HOGARES': 232.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.018367318071496,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3777656571851, -34.598106122061985],
     [-58.37697538562659, -34.59807014642544],
     [-58.376304088920456, -34.59803206683805],
     [-58.37629032101528, -34.598169101187125],
     [-58.376242332757435, -34.599113446017334],
     [-58.37624269692003, -34.59925513829769],
     [-58.37768271285556, -34.59935594016271],
     [-58.3777656571851, -34.598106122061985]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_11',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 213.0,
   'VIVIEND': 362.0,
   'HOGARES': 140.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.032559403027036,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.376304088920456, -34.59803206683805],
     [-58.37480531899328, -34.5979469108312],
     [-58.37466174378134, -34.59793877905169],
     [-58.3736578354966, -34.59787220466403],
     [-58.37365193210767, -34.59797748346354],
     [-58.37363150317579, -34.59836698082342],
     [-58.37360351363196, -34.5988980942381],
     [-58.373591067059124, -34.599069495877586],
     [-58.374771942682685, -34.599152184589784],
     [-58.37624269692003, -34.59925513829769],
     [-58.376242332757435, -34.599113446017334],
     [-58.37629032101528, -34.598169101187125],
     [-58.376304088920456, -34.59803206683805]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_12',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 507.0,
   'VIVIEND': 404.0,
   'HOGARES': 175.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.016432189444521,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3736578354966, -34.59787220466403],
     [-58.37247348297185, -34.59779365758297],
     [-58.37235836126175, -34.59777737500488],
     [-58.372283788605465, -34.59830035496482],
     [-58.37227416994537, -34.59837457418255],
     [-58.37226695567185, -34.598430485076705],
     [-58.372198161576094, -34.59896396230658],
     [-58.373591067059124, -34.599069495877586],
     [-58.37360351363196, -34.5988980942381],
     [-58.37363150317579, -34.59836698082342],
     [-58.37365193210767, -34.59797748346354],
     [-58.3736578354966, -34.59787220466403]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_13',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1425.0,
   'VIVIEND': 254.0,
   'HOGARES': 64.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.156539622430067,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3727563578446, -34.59494407695705],
     [-58.37244438808239, -34.59496595811872],
     [-58.37331314508817, -34.59409204141741],
     [-58.37207290312255, -34.59259673922328],
     [-58.372029359809005, -34.59254424133782],
     [-58.371593125488346, -34.59220989755589],
     [-58.369882467628656, -34.5963745823482],
     [-58.369386332768975, -34.5975824598023],
     [-58.368916353536804, -34.59876817169878],
     [-58.37033408469568, -34.59882798626825],
     [-58.37048950048215, -34.598834512347956],
     [-58.37064150432535, -34.598845965298615],
     [-58.37074156282148, -34.59885357605672],
     [-58.370883858821145, -34.598864387577876],
     [-58.372198161576094, -34.59896396230658],
     [-58.37226695567185, -34.598430485076705],
     [-58.37227416994537, -34.59837457418255],
     [-58.372283788605465, -34.59830035496482],
     [-58.37235836126175, -34.59777737500488],
     [-58.3725048441917, -34.59674951168136],
     [-58.3725220959736, -34.59662515653636],
     [-58.37254149414889, -34.59648467599091],
     [-58.372690444895795, -34.59553322355432],
     [-58.372700912855294, -34.59546048378856],
     [-58.3727563578446, -34.59494407695705]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_2',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 770.0,
   'VIVIEND': 281.0,
   'HOGARES': 117.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.142009506613985,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.375097484929, -34.59334790229705],
     [-58.37491200752826, -34.59335164230255],
     [-58.37444490768786, -34.59336095340762],
     [-58.374551853577174, -34.59329187479206],
     [-58.37469084041967, -34.59320204425001],
     [-58.37484371703338, -34.59310327975918],
     [-58.373835313017715, -34.591874996759984],
     [-58.37355692754111, -34.591559267888805],
     [-58.37337843089338, -34.591578060366395],
     [-58.37315416690657, -34.591600603607475],
     [-58.37309466255606, -34.59161191372725],
     [-58.372815364340596, -34.59174416929334],
     [-58.37202781656919, -34.59212961575725],
     [-58.372015858814414, -34.591959786281386],
     [-58.37189370787717, -34.591993639600794],
     [-58.371754490386145, -34.59198163434854],
     [-58.371693817379764, -34.59206124435954],
     [-58.37159312548836, -34.59220989755579],
     [-58.37202935980899, -34.59254424133782],
     [-58.372072903122564, -34.59259673922328],
     [-58.37331314508817, -34.59409204141741],
     [-58.37384569051655, -34.594925258925905],
     [-58.373803342831756, -34.595506926315494],
     [-58.37375073382111, -34.59622811497807],
     [-58.37372392000672, -34.59659568624187],
     [-58.37372143750477, -34.59668758709682],
     [-58.37381970794322, -34.59669272920545],
     [-58.374817285992926, -34.59669197284011],
     [-58.37481706919273, -34.59669501380375],
     [-58.37497888302333, -34.59694675233564],
     [-58.37513941689006, -34.59696204082525],
     [-58.37526731410754, -34.59690067924699],
     [-58.37566316452542, -34.59671764987116],
     [-58.375990264114854, -34.59672182645672],
     [-58.37635789990496, -34.59672652381893],
     [-58.37646409286664, -34.59672941585161],
     [-58.37771622823097, -34.59680226712728],
     [-58.377841487700636, -34.5968147488344],
     [-58.377839653679096, -34.596692140246155],
     [-58.37790038726301, -34.59575681746275],
     [-58.37790485808521, -34.595547381043524],
     [-58.377089014282376, -34.59547561322913],
     [-58.37709212079782, -34.595352867222445],
     [-58.377062564940445, -34.595275169346245],
     [-58.37703795677608, -34.595189305807295],
     [-58.37687501927125, -34.59505017529483],
     [-58.3766527398138, -34.59498051074629],
     [-58.37643523873112, -34.594984441748416],
     [-58.37626847507277, -34.59500530995461],
     [-58.37607185330403, -34.59491242275675],
     [-58.375138065708825, -34.59379131799694],
     [-58.375352946071025, -34.59368478034013],
     [-58.375097484929, -34.59334790229705]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_3',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 261.0,
   'VIVIEND': 295.0,
   'HOGARES': 126.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.025881119968146,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37331314508817, -34.59409204141741],
     [-58.37244438808239, -34.59496595811872],
     [-58.3727563578446, -34.59494407695705],
     [-58.372700912855294, -34.59546048378856],
     [-58.372690444895795, -34.59553322355432],
     [-58.37254149414889, -34.59648467599091],
     [-58.3725220959736, -34.59662515653636],
     [-58.373721437504784, -34.59668758709682],
     [-58.37372392000673, -34.59659568624187],
     [-58.37375073382111, -34.59622811497808],
     [-58.37380334283176, -34.59550692631554],
     [-58.37384569051657, -34.59492525892592],
     [-58.37331314508817, -34.59409204141741]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_4',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 560.0,
   'VIVIEND': 597.0,
   'HOGARES': 278.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.015010523210909,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.373721437504784, -34.59668758709682],
     [-58.3725220959736, -34.59662515653636],
     [-58.3725048441917, -34.59674951168136],
     [-58.37235836126175, -34.59777737500488],
     [-58.37247348297185, -34.59779365758297],
     [-58.3736578354966, -34.59787220466403],
     [-58.373719130350764, -34.59677476970392],
     [-58.373721437504784, -34.59668758709682]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_5',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 403.0,
   'VIVIEND': 457.0,
   'HOGARES': 147.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.01390857517315,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.374817285992926, -34.59669197284012],
     [-58.37381970794322, -34.59669272920545],
     [-58.373721437504784, -34.59668758709682],
     [-58.373719130350764, -34.59677476970392],
     [-58.3736578354966, -34.59787220466403],
     [-58.37466174378134, -34.59793877905169],
     [-58.37480531899328, -34.5979469108312],
     [-58.37480722868567, -34.59783176980971],
     [-58.374817069192744, -34.59669501380378],
     [-58.374817285992926, -34.59669197284012]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_6',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 300.0,
   'VIVIEND': 400.0,
   'HOGARES': 80.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.018487160564452,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37526731410754, -34.59690067924701],
     [-58.37513941689008, -34.59696204082523],
     [-58.37497888302333, -34.59694675233565],
     [-58.374817069192744, -34.59669501380378],
     [-58.37480722868567, -34.59783176980971],
     [-58.37480531899328, -34.5979469108312],
     [-58.376304088920456, -34.59803206683805],
     [-58.376314070050796, -34.597933269755984],
     [-58.37635789990496, -34.59672652381892],
     [-58.37599026411487, -34.59672182645673],
     [-58.37566316452542, -34.59671764987116],
     [-58.37526731410754, -34.59690067924701]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_7',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 592.0,
   'VIVIEND': 641.0,
   'HOGARES': 249.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.019620392933324,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37784148770065, -34.59681474883441],
     [-58.37771622823099, -34.596802267127295],
     [-58.376464092866655, -34.59672941585161],
     [-58.37635789990496, -34.59672652381892],
     [-58.376314070050796, -34.597933269755984],
     [-58.376304088920456, -34.59803206683805],
     [-58.37697538562659, -34.59807014642544],
     [-58.3777656571851, -34.598106122061985],
     [-58.37784332222851, -34.59693686445604],
     [-58.37784148770065, -34.59681474883441]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_8',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 597.0,
   'VIVIEND': 469.0,
   'HOGARES': 240.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.018717824172489,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37930432719221, -34.596960266363226],
     [-58.37784148770065, -34.59681474883441],
     [-58.37784332222851, -34.59693686445604],
     [-58.3777656571851, -34.598106122061985],
     [-58.379237710122005, -34.59817312460413],
     [-58.37929850946843, -34.59707223574815],
     [-58.37930432719221, -34.596960266363226]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_7_9',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 330.0,
   'VIVIEND': 571.0,
   'HOGARES': 183.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.018686684426522,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.379237710122005, -34.59817312460413],
     [-58.3777656571851, -34.598106122061985],
     [-58.37768271285556, -34.59935594016271],
     [-58.37914567968293, -34.5994185008086],
     [-58.37915572305473, -34.59925435057567],
     [-58.379232418413196, -34.59826988285088],
     [-58.379237710122005, -34.59817312460413]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_1',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 352.0,
   'VIVIEND': 364.0,
   'HOGARES': 188.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.0185310238811,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38655960167717, -34.59617527990942],
     [-58.385393529558314, -34.596140884314195],
     [-58.385151431590664, -34.596126364304254],
     [-58.38514613929155, -34.59632291295816],
     [-58.38507267051161, -34.597303090987644],
     [-58.38505272049737, -34.59741843198286],
     [-58.38520804896725, -34.59742571391953],
     [-58.38632599601998, -34.59748902523809],
     [-58.386466162058476, -34.59750052149222],
     [-58.386464825420916, -34.59737889927785],
     [-58.386534036206555, -34.59638083018205],
     [-58.38655960167717, -34.59617527990942]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_10',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 445.0,
   'VIVIEND': 395.0,
   'HOGARES': 186.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.018752140253135,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38074403606293, -34.59829097816827],
     [-58.37932372044499, -34.59817705669502],
     [-58.379237710122005, -34.59817312460413],
     [-58.379232418413196, -34.59826988285088],
     [-58.37915572305473, -34.59925435057567],
     [-58.37914567968293, -34.5994185008086],
     [-58.38042411182214, -34.599467468745715],
     [-58.380653447794295, -34.59947818668542],
     [-58.38073479187109, -34.59842512869398],
     [-58.38074403606293, -34.59829097816827]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_2',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1324.0,
   'VIVIEND': 908.0,
   'HOGARES': 567.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.019576361078502,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385151431590664, -34.596126364304254],
     [-58.38370344396881, -34.596039518830594],
     [-58.3835834008078, -34.597262133943445],
     [-58.38357752708028, -34.59734938484756],
     [-58.384844849457444, -34.59740872193743],
     [-58.38505272049737, -34.59741843198286],
     [-58.38507267051161, -34.597303090987644],
     [-58.38514613929155, -34.59632291295816],
     [-58.385151431590664, -34.596126364304254]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_3',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1104.0,
   'VIVIEND': 813.0,
   'HOGARES': 448.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.102446695343777,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38073479187109, -34.59842512869398],
     [-58.380653447794295, -34.59947818668542],
     [-58.38104910157668, -34.59949655091027],
     [-58.38149244521847, -34.599517128727584],
     [-58.38192437758803, -34.59953720441643],
     [-58.38217534471692, -34.599548849318445],
     [-58.38343205503662, -34.59960706730422],
     [-58.383444926228435, -34.599415735093864],
     [-58.383491850365175, -34.59860955759857],
     [-58.383497378675244, -34.59852751783035],
     [-58.38357752708028, -34.59734938484756],
     [-58.3835834008078, -34.597262133943445],
     [-58.38370344396881, -34.596039518830594],
     [-58.38212094385043, -34.59591348237762],
     [-58.381814817605324, -34.595887575265934],
     [-58.38142660382792, -34.595854711237415],
     [-58.381375852531626, -34.595850381591],
     [-58.38088809508373, -34.595809069070896],
     [-58.38084354642122, -34.596687290756606],
     [-58.38082079384135, -34.59713608445538],
     [-58.380814018555895, -34.59727129302187],
     [-58.38074403606293, -34.59829097816827],
     [-58.38073479187109, -34.59842512869398]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_4',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 592.0,
   'VIVIEND': 704.0,
   'HOGARES': 295.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.020286600798059,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38088809508373, -34.595809069070896],
     [-58.38062957024557, -34.5957871346071],
     [-58.379357559086, -34.595675214600426],
     [-58.37936154709942, -34.595860290313745],
     [-58.37930432719221, -34.596960266363226],
     [-58.37941119411754, -34.59697090287679],
     [-58.38061352921775, -34.597117142131054],
     [-58.38082079384135, -34.59713608445538],
     [-58.38084354642122, -34.596687290756606],
     [-58.38088809508373, -34.595809069070896]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_5',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 589.0,
   'VIVIEND': 458.0,
   'HOGARES': 214.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.018280177032119,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38082079384135, -34.59713608445538],
     [-58.38061352921775, -34.597117142131054],
     [-58.37941119411754, -34.59697090287679],
     [-58.37930432719221, -34.596960266363226],
     [-58.37929850946843, -34.59707223574815],
     [-58.379237710122005, -34.59817312460413],
     [-58.37932372044499, -34.59817705669502],
     [-58.38074403606293, -34.59829097816827],
     [-58.380814018555895, -34.59727129302187],
     [-58.38082079384135, -34.59713608445538]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_6',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1144.0,
   'VIVIEND': 1024.0,
   'HOGARES': 572.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.017729659721281,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38505272049737, -34.59741843198286],
     [-58.384844849457444, -34.59740872193743],
     [-58.38357752708028, -34.59734938484756],
     [-58.383497378675244, -34.59852751783035],
     [-58.38494565574555, -34.59862401394581],
     [-58.38502669135069, -34.5975687695801],
     [-58.38505272049737, -34.59741843198286]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_7',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 1334.0,
   'VIVIEND': 953.0,
   'HOGARES': 561.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.017790138289727,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.386466162058476, -34.59750052149222],
     [-58.38632599601998, -34.59748902523809],
     [-58.38520804896725, -34.59742571391953],
     [-58.38505272049737, -34.59741843198286],
     [-58.38502669135069, -34.5975687695801],
     [-58.38494565574555, -34.59862401394581],
     [-58.38507756602221, -34.59863191493551],
     [-58.38622293325968, -34.59871531532908],
     [-58.3863625890759, -34.59872821985113],
     [-58.38637545766305, -34.59862533919297],
     [-58.38646750326758, -34.59761714363885],
     [-58.386466162058476, -34.59750052149222]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_8',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 446.0,
   'VIVIEND': 346.0,
   'HOGARES': 189.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.014822390941836,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3863625890759, -34.59872821985113],
     [-58.38622293325968, -34.59871531532908],
     [-58.38507756602221, -34.59863191493551],
     [-58.38494565574555, -34.59862401394581],
     [-58.38493625923276, -34.59874605185157],
     [-58.384875097586246, -34.59967461680658],
     [-58.38620922209875, -34.59973708094971],
     [-58.38626679063182, -34.59973979311559],
     [-58.386347232356364, -34.5988511696413],
     [-58.3863625890759, -34.59872821985113]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_8_9',
   'BARRIO': 'RETIRO',
   'COMUNA': '1',
   'POBLACI': 691.0,
   'VIVIEND': 481.0,
   'HOGARES': 257.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.015714012109037,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38494565574555, -34.59862401394581],
     [-58.383497378675244, -34.59852751783035],
     [-58.383491850365175, -34.59860955759857],
     [-58.383444926228435, -34.599415735093864],
     [-58.38343205503662, -34.59960706730422],
     [-58.38360646344724, -34.599615138331224],
     [-58.384875097586246, -34.59967461680658],
     [-58.38493625923276, -34.59874605185157],
     [-58.38494565574555, -34.59862401394581]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_1',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 292.0,
   'VIVIEND': 410.0,
   'HOGARES': 161.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.017646391005836,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38620922209875, -34.59973708094971],
     [-58.384875097586246, -34.59967461680658],
     [-58.3847557768218, -34.60095709274657],
     [-58.38596949846153, -34.60101870788288],
     [-58.3861079697194, -34.601027316118454],
     [-58.38620922209875, -34.59973708094971]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_10',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 369.0,
   'VIVIEND': 366.0,
   'HOGARES': 108.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.064103016467571,
   'partidas': 38.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37339745673417, -34.601408399010566],
     [-58.373506119558755, -34.60141671803264],
     [-58.37457632477349, -34.60148777823945],
     [-58.37473412812849, -34.60149655418878],
     [-58.37474345954026, -34.601369939564705],
     [-58.37477633687016, -34.60047783900562],
     [-58.37476730442248, -34.6003209290385],
     [-58.37475877334616, -34.600173174477554],
     [-58.374762492593106, -34.5993916879956],
     [-58.374771942682685, -34.599152184589784],
     [-58.373591067059124, -34.599069495877586],
     [-58.372198161576094, -34.59896396230658],
     [-58.372070860652805, -34.60012310845359],
     [-58.37206440859253, -34.600182681905245],
     [-58.37199378341411, -34.60130116507163],
     [-58.37339745673417, -34.601408399010566]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_11',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 422.0,
   'VIVIEND': 383.0,
   'HOGARES': 116.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.015373077321246,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.372198161576094, -34.59896396230658],
     [-58.370883858821145, -34.598864387577876],
     [-58.37079981931495, -34.599931732759295],
     [-58.37079350713589, -34.600018137587384],
     [-58.37090063306566, -34.6000281479353],
     [-58.372070860652805, -34.60012310845359],
     [-58.372198161576094, -34.59896396230658]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_12',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 378.0,
   'VIVIEND': 238.0,
   'HOGARES': 76.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.015608247097882,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.372070860652805, -34.60012310845359],
     [-58.37090063306566, -34.6000281479353],
     [-58.37079350713589, -34.600018137587384],
     [-58.370784428793705, -34.600141653491406],
     [-58.37068211891242, -34.60109292676544],
     [-58.37067281671357, -34.6011874984351],
     [-58.370758056639104, -34.601197421975606],
     [-58.37188409898171, -34.601292773519056],
     [-58.37199378341411, -34.60130116507163],
     [-58.37206440859253, -34.600182681905245],
     [-58.372070860652805, -34.60012310845359]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_13',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 590.0,
   'VIVIEND': 449.0,
   'HOGARES': 201.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.0534820775249,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36991059492707, -34.601100863736704],
     [-58.370065066988396, -34.60111738976945],
     [-58.37010406819973, -34.60112157435545],
     [-58.37067281671357, -34.6011874984351],
     [-58.37068211891242, -34.60109292676544],
     [-58.370784428793705, -34.600141653491406],
     [-58.37079350713589, -34.600018137587384],
     [-58.37079981931495, -34.599931732759295],
     [-58.370883858821145, -34.598864387577876],
     [-58.37074156282148, -34.59885357605672],
     [-58.37064150432535, -34.598845965298615],
     [-58.37048950048215, -34.598834512347956],
     [-58.37033408469568, -34.59882798626825],
     [-58.368916353536804, -34.59876817169878],
     [-58.368533894129996, -34.59966605801891],
     [-58.36847642633781, -34.599800945003146],
     [-58.36803549579054, -34.60088273047571],
     [-58.36871962812558, -34.60095938706132],
     [-58.36974760951406, -34.60108151408562],
     [-58.36991059492707, -34.601100863736704]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_14',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 253.0,
   'VIVIEND': 435.0,
   'HOGARES': 148.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.085511346465416,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.36771740822054, -34.602149964309426],
     [-58.36758973289771, -34.60327973825967],
     [-58.36758966850858, -34.60327994633537],
     [-58.36758970897242, -34.603279950027606],
     [-58.36841483866459, -34.60335523872529],
     [-58.368586860128524, -34.603370935105275],
     [-58.3693350723475, -34.603436299465976],
     [-58.369478401610884, -34.60344387393793],
     [-58.369667378242795, -34.60345387745078],
     [-58.36987645338074, -34.60346495231382],
     [-58.37001893106444, -34.60347252550303],
     [-58.370497966339876, -34.60350408600408],
     [-58.37057274345284, -34.602501876343474],
     [-58.370581042497186, -34.60239047274523],
     [-58.37070988977303, -34.602399795421896],
     [-58.3717965354716, -34.60247723050906],
     [-58.37192572453089, -34.60248577749882],
     [-58.371932066990595, -34.602370639909466],
     [-58.37198728380933, -34.60140433058273],
     [-58.37199378341411, -34.601301165071625],
     [-58.3718840989817, -34.601292773519056],
     [-58.37075805663909, -34.6011974219756],
     [-58.37067281671356, -34.6011874984351],
     [-58.37010406819973, -34.601121574355446],
     [-58.37006506698837, -34.60111738976944],
     [-58.36991059492707, -34.60110086373669],
     [-58.36974760951403, -34.601081514085614],
     [-58.36871962812556, -34.600959387061316],
     [-58.36803549579051, -34.60088273047571],
     [-58.367793547002435, -34.60147635298557],
     [-58.36771740822054, -34.602149964309426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_15',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 238.0,
   'VIVIEND': 608.0,
   'HOGARES': 118.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.032875638020729,
   'partidas': 24.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37473412812849, -34.60149655418878],
     [-58.37457632477349, -34.60148777823945],
     [-58.373506119558755, -34.60141671803264],
     [-58.37339745673417, -34.601408399010566],
     [-58.37199378341411, -34.60130116507163],
     [-58.37198728380933, -34.60140433058273],
     [-58.371932066990624, -34.60237063990947],
     [-58.37192572453089, -34.60248577749883],
     [-58.3733099307296, -34.602577786495246],
     [-58.37452654268228, -34.602658672740624],
     [-58.37467003867986, -34.60266884690167],
     [-58.37472384582594, -34.60163647815423],
     [-58.37473412812849, -34.60149655418878]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_16',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 997.0,
   'VIVIEND': 647.0,
   'HOGARES': 337.0,
   'HOGARES_': 124.0,
   'AREA_KM': 0.068767944900759,
   'partidas': 30.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38050535686591, -34.60180297658004],
     [-58.38028963799558, -34.60179543661394],
     [-58.37911679062743, -34.6017323140963],
     [-58.37899671130194, -34.601727231717746],
     [-58.37758011699214, -34.6016673073042],
     [-58.37744905185871, -34.601661793197835],
     [-58.37627767288652, -34.60158272871998],
     [-58.37615461497039, -34.60157588084892],
     [-58.37473412812849, -34.60149655418878],
     [-58.37472384582594, -34.60163647815423],
     [-58.37467003867986, -34.60266884690167],
     [-58.37481268311542, -34.60267894985718],
     [-58.376106470153715, -34.60274966451714],
     [-58.37737615843559, -34.60281901056488],
     [-58.37751829519093, -34.60282643391227],
     [-58.37894085607413, -34.60290108163981],
     [-58.379068770862425, -34.602907789183256],
     [-58.38022317119937, -34.60295287129699],
     [-58.38043897440428, -34.60296428472686],
     [-58.38044973721152, -34.60275935980006],
     [-58.38050535686591, -34.60180297658004]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_17',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 360.0,
   'VIVIEND': 516.0,
   'HOGARES': 207.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.033532538737945,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37894085607413, -34.60290108163981],
     [-58.37751829519093, -34.60282643391227],
     [-58.37751195680854, -34.60294509296371],
     [-58.37747466080175, -34.60393831885922],
     [-58.37887474493081, -34.6040240785564],
     [-58.380378646277464, -34.60411623038448],
     [-58.3804264748534, -34.603203011719465],
     [-58.38043897440428, -34.60296428472686],
     [-58.38022317119937, -34.60295287129699],
     [-58.379068770862425, -34.602907789183256],
     [-58.37894085607413, -34.60290108163981]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_19',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 119.0,
   'VIVIEND': 405.0,
   'HOGARES': 61.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.06236043819797,
   'partidas': 28.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37605714388436, -34.603851507923025],
     [-58.37609868489655, -34.602749239038836],
     [-58.37481268311542, -34.602678949857165],
     [-58.37467003867986, -34.60266884690167],
     [-58.37452654268228, -34.60265867274062],
     [-58.3733099307296, -34.602577786495246],
     [-58.37192572453089, -34.60248577749882],
     [-58.3717965354716, -34.60247723050906],
     [-58.37070988977303, -34.602399795421896],
     [-58.370581042497186, -34.60239047274523],
     [-58.37057274345284, -34.602501876343474],
     [-58.370497966339876, -34.60350408600408],
     [-58.37067816891043, -34.603515912329826],
     [-58.37186447515843, -34.60359398531869],
     [-58.37197901811408, -34.603601535419735],
     [-58.37325356105474, -34.603679660477994],
     [-58.37462008225668, -34.603763402105166],
     [-58.37605714388436, -34.603851507923025]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_2',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 388.0,
   'VIVIEND': 742.0,
   'HOGARES': 193.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.0674803891114,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.384536014372586, -34.6043584040912],
     [-58.38574551830188, -34.60442931464455],
     [-58.38592564101119, -34.60443992120433],
     [-58.385994282221844, -34.60444538697886],
     [-58.38604361260957, -34.60322138847438],
     [-58.38608187585885, -34.602269076393426],
     [-58.38609710524013, -34.60210042181258],
     [-58.3861937265943, -34.60103258125392],
     [-58.3861079697194, -34.601027316118454],
     [-58.38596949846153, -34.60101870788288],
     [-58.3847557768218, -34.60095709274657],
     [-58.38468802774215, -34.601913399895594],
     [-58.384683022039106, -34.60198403140903],
     [-58.38467982833593, -34.60202952291108],
     [-58.384601202865326, -34.603139134694906],
     [-58.384435478845454, -34.603126000172864],
     [-58.383201360653864, -34.60307696228432],
     [-58.38317534126853, -34.603301032677585],
     [-58.383115800675604, -34.60411318718556],
     [-58.383114879769636, -34.604275019596166],
     [-58.384536014372586, -34.6043584040912]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_3',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 449.0,
   'VIVIEND': 715.0,
   'HOGARES': 195.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.182069476454914,
   'partidas': 30.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38149244521847, -34.599517128727584],
     [-58.38104910157668, -34.59949655091027],
     [-58.380653447794295, -34.59947818668542],
     [-58.38063662646155, -34.599696136008774],
     [-58.38058642952173, -34.60051076085351],
     [-58.380576913177, -34.60066131979992],
     [-58.38051505872147, -34.601637276752115],
     [-58.38050535686591, -34.60180297658004],
     [-58.38044973721152, -34.60275935980006],
     [-58.38043897440428, -34.60296428472686],
     [-58.3804264748534, -34.603203011719465],
     [-58.380378646277464, -34.60411623038448],
     [-58.38057674492161, -34.60412002589556],
     [-58.38067340384954, -34.604249299369805],
     [-58.38076238828314, -34.60425270375818],
     [-58.38085137108338, -34.60425778038015],
     [-58.38124031375484, -34.6042744867235],
     [-58.38140469358618, -34.60418304591719],
     [-58.381609009960385, -34.60418663262474],
     [-58.383114879769636, -34.604275019596166],
     [-58.383115800675604, -34.60411318718556],
     [-58.38317534126853, -34.603301032677585],
     [-58.383201360653864, -34.60307696228432],
     [-58.384435478845454, -34.603126000172864],
     [-58.384601202865326, -34.603139134694906],
     [-58.38467982833593, -34.60202952291108],
     [-58.384683022039106, -34.60198403140903],
     [-58.38468802774215, -34.601913399895594],
     [-58.3847557768218, -34.60095709274657],
     [-58.384875097586246, -34.59967461680658],
     [-58.38360646344724, -34.599615138331224],
     [-58.38343205503662, -34.59960706730422],
     [-58.38217534471692, -34.599548849318445],
     [-58.38192437758803, -34.59953720441643],
     [-58.38149244521847, -34.599517128727584]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_4',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 256.0,
   'VIVIEND': 567.0,
   'HOGARES': 134.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.01791686917869,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.380653447794295, -34.59947818668542],
     [-58.38042411182214, -34.599467468745715],
     [-58.37914567968293, -34.5994185008086],
     [-58.37913407701031, -34.59960891792173],
     [-58.37907084935035, -34.60057938032898],
     [-58.379195618717354, -34.600576860110735],
     [-58.38040855620252, -34.600646558295644],
     [-58.380576913177, -34.60066131979992],
     [-58.38058642952173, -34.60051076085351],
     [-58.38063662646155, -34.599696136008774],
     [-58.380653447794295, -34.59947818668542]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_5',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 409.0,
   'VIVIEND': 455.0,
   'HOGARES': 192.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.017743625626653,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.380576913177, -34.60066131979992],
     [-58.38040855620252, -34.600646558295644],
     [-58.379195618717354, -34.600576860110735],
     [-58.37907084935035, -34.60057938032898],
     [-58.37906384262143, -34.600687475530556],
     [-58.379054764020296, -34.60082338657358],
     [-58.3790020193372, -34.60161469869653],
     [-58.37899671130194, -34.601727231717746],
     [-58.37911679062743, -34.6017323140963],
     [-58.38028963799558, -34.60179543661394],
     [-58.38050535686591, -34.60180297658004],
     [-58.38051505872147, -34.601637276752115],
     [-58.380576913177, -34.60066131979992]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_6',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 354.0,
   'VIVIEND': 558.0,
   'HOGARES': 175.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.033449179432482,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37845946764508, -34.60056114263912],
     [-58.37773142209217, -34.6005311304095],
     [-58.377611602088464, -34.600524074992066],
     [-58.37746810768633, -34.60051559445344],
     [-58.37634701370711, -34.600415649986445],
     [-58.37620275766618, -34.600402801166574],
     [-58.37615461497039, -34.60157588084892],
     [-58.37627767288652, -34.60158272871998],
     [-58.37744905185871, -34.601661793197835],
     [-58.37758011699214, -34.6016673073042],
     [-58.37899671130194, -34.601727231717746],
     [-58.3790020193372, -34.60161469869653],
     [-58.379054764020296, -34.60082338657358],
     [-58.37906384262143, -34.600687475530556],
     [-58.37907084935035, -34.60057938032898],
     [-58.37895876977692, -34.6005816978588],
     [-58.37845946764508, -34.60056114263912]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_7',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 588.0,
   'VIVIEND': 868.0,
   'HOGARES': 288.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.017440052947386,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37914567968293, -34.5994185008086],
     [-58.37768271285556, -34.59935594016271],
     [-58.377669565792345, -34.599554313911725],
     [-58.37762108089952, -34.60033203683482],
     [-58.377611602088464, -34.600524074992066],
     [-58.37773142209217, -34.6005311304095],
     [-58.37845946764508, -34.60056114263912],
     [-58.37895876977692, -34.6005816978588],
     [-58.37907084935035, -34.60057938032898],
     [-58.37913407701031, -34.59960891792173],
     [-58.37914567968293, -34.5994185008086]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_8',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 261.0,
   'VIVIEND': 405.0,
   'HOGARES': 149.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.016822090258035,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37768271285556, -34.59935594016271],
     [-58.37624269692003, -34.59925513829769],
     [-58.376243123479966, -34.59941880274091],
     [-58.37620275766618, -34.600402801166574],
     [-58.37634701370711, -34.600415649986445],
     [-58.37746810768633, -34.60051559445344],
     [-58.377611602088464, -34.600524074992066],
     [-58.37762108089952, -34.60033203683482],
     [-58.377669565792345, -34.599554313911725],
     [-58.37768271285556, -34.59935594016271]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_9_9',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 628.0,
   'VIVIEND': 851.0,
   'HOGARES': 237.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.034265890146513,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.37624269692003, -34.59925513829769],
     [-58.374771942682685, -34.599152184589784],
     [-58.374762492593106, -34.5993916879956],
     [-58.37475877334616, -34.600173174477554],
     [-58.37476730442248, -34.6003209290385],
     [-58.37477633687016, -34.60047783900562],
     [-58.37474345954026, -34.601369939564705],
     [-58.37473412812849, -34.60149655418878],
     [-58.37615461497039, -34.60157588084892],
     [-58.37620275766618, -34.600402801166574],
     [-58.376243123479966, -34.59941880274091],
     [-58.37624269692003, -34.59925513829769]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_1',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 318.0,
   'VIVIEND': 524.0,
   'HOGARES': 120.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.018065398030043,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38626679063182, -34.59973979311559],
     [-58.38620922209875, -34.59973708094971],
     [-58.3861079697194, -34.601027316118454],
     [-58.3861937265943, -34.60103258125392],
     [-58.386380569267146, -34.601044106861146],
     [-58.38749959759616, -34.601096422041216],
     [-58.38750497154368, -34.60099248033237],
     [-58.387550500593846, -34.59980157719365],
     [-58.38735488798602, -34.59979075219714],
     [-58.38626679063182, -34.59973979311559]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_10',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 680.0,
   'VIVIEND': 617.0,
   'HOGARES': 296.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.021439826039046,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39029987415341, -34.6023364416538],
     [-58.38906706495323, -34.602260984654755],
     [-58.38893191794571, -34.60224660706493],
     [-58.38886237139884, -34.603458341054576],
     [-58.38900816753835, -34.6034713871068],
     [-58.39025045752105, -34.60353614596642],
     [-58.39058353496746, -34.60355352660105],
     [-58.390689046985806, -34.60248125127841],
     [-58.39070209659694, -34.60236048277691],
     [-58.39056881690781, -34.60235293917579],
     [-58.39029987415341, -34.6023364416538]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_11',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 612.0,
   'VIVIEND': 725.0,
   'HOGARES': 351.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.015217558019988,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39199537927583, -34.60243363434063],
     [-58.39070209659694, -34.60236048277691],
     [-58.390689046985806, -34.60248125127841],
     [-58.39058353496746, -34.60355352660105],
     [-58.39155330129496, -34.603604096556346],
     [-58.39179015555792, -34.60360226257941],
     [-58.39197602038627, -34.60256475156912],
     [-58.39199537927583, -34.60243363434063]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_12',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 584.0,
   'VIVIEND': 606.0,
   'HOGARES': 291.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.019275688956141,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39058353496746, -34.60355352660105],
     [-58.39025045752105, -34.60353614596642],
     [-58.390222633276835, -34.6047809338339],
     [-58.39168941868018, -34.604882924327725],
     [-58.39179015555792, -34.60360226257941],
     [-58.39155330129496, -34.603604096556346],
     [-58.39058353496746, -34.60355352660105]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_13',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 678.0,
   'VIVIEND': 798.0,
   'HOGARES': 339.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.036021945904478,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38886237139884, -34.603458341054576],
     [-58.38871069921507, -34.60344472787768],
     [-58.387354477522145, -34.60335734754421],
     [-58.38734635190089, -34.60349002026472],
     [-58.387304412473334, -34.604378808366846],
     [-58.3873048539928, -34.60454993754037],
     [-58.38863033549899, -34.60465244079822],
     [-58.38879487072825, -34.604665709748694],
     [-58.390222633276835, -34.6047809338339],
     [-58.39025045752105, -34.60353614596642],
     [-58.38900816753835, -34.6034713871068],
     [-58.38886237139884, -34.603458341054576]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_14',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 218.0,
   'VIVIEND': 537.0,
   'HOGARES': 111.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.016085174022809,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.387354477522145, -34.60335734754421],
     [-58.387215661913196, -34.603348388393606],
     [-58.38604361260957, -34.60322138847438],
     [-58.385994282221844, -34.60444538697886],
     [-58.3873048539928, -34.60454993754037],
     [-58.387304412473334, -34.604378808366846],
     [-58.38734635190089, -34.60349002026472],
     [-58.387354477522145, -34.60335734754421]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_2',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 504.0,
   'VIVIEND': 570.0,
   'HOGARES': 278.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.019724323391542,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.389067370928814, -34.59988778478577],
     [-58.38888351177834, -34.59987563128569],
     [-58.387550500593846, -34.59980157719365],
     [-58.38750497154368, -34.60099248033237],
     [-58.38749959759616, -34.601096422041216],
     [-58.387612181787546, -34.60110170271052],
     [-58.38899428296273, -34.60116022220607],
     [-58.389067370928814, -34.59988778478577]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_3',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 980.0,
   'VIVIEND': 839.0,
   'HOGARES': 515.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.023443454537749,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38954341234911, -34.599919127870514],
     [-58.389067370928814, -34.59988778478577],
     [-58.38899428296273, -34.60116022220607],
     [-58.38919492581926, -34.601168723630664],
     [-58.3893924214245, -34.60117285658033],
     [-58.3903948034406, -34.601193877483766],
     [-58.39067388642884, -34.60119974684146],
     [-58.39082709608993, -34.60120378089624],
     [-58.39095604041724, -34.60001130586167],
     [-58.39077865212015, -34.600000426643945],
     [-58.38954341234911, -34.599919127870514]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_4',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 427.0,
   'VIVIEND': 422.0,
   'HOGARES': 223.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.016424478058435,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.392333940826646, -34.60008408102389],
     [-58.39095604041724, -34.60001130586167],
     [-58.39082709608993, -34.60120378089624],
     [-58.3909728965329, -34.60120759913311],
     [-58.392168669347164, -34.60125400101409],
     [-58.392333940826646, -34.60008408102389]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_5',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 507.0,
   'VIVIEND': 455.0,
   'HOGARES': 236.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.020671328868963,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39082709608993, -34.60120378089624],
     [-58.39067388642884, -34.60119974684146],
     [-58.3903948034406, -34.601193877483766],
     [-58.39029987415341, -34.6023364416538],
     [-58.39056881690781, -34.60235293917579],
     [-58.39070209659694, -34.60236048277691],
     [-58.39199537927583, -34.60243363434063],
     [-58.392150505711115, -34.60138230204884],
     [-58.392168669347164, -34.60125400101409],
     [-58.3909728965329, -34.60120759913311],
     [-58.39082709608993, -34.60120378089624]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_6',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 541.0,
   'VIVIEND': 605.0,
   'HOGARES': 265.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.015759605599642,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.3893924214245, -34.60117285658033],
     [-58.38919492581926, -34.601168723630664],
     [-58.38899428296273, -34.60116022220607],
     [-58.38893191794571, -34.60224660706493],
     [-58.38906706495323, -34.602260984654755],
     [-58.39029987415341, -34.6023364416538],
     [-58.3903948034406, -34.601193877483766],
     [-58.3893924214245, -34.60117285658033]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_7',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 312.0,
   'VIVIEND': 442.0,
   'HOGARES': 159.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.016310231410317,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38899428296273, -34.60116022220607],
     [-58.387612181787546, -34.60110170271052],
     [-58.38749959759616, -34.601096422041216],
     [-58.387451918440085, -34.60202563006632],
     [-58.38743510477483, -34.602159776356146],
     [-58.38880179532311, -34.602232795755995],
     [-58.38893191794571, -34.60224660706493],
     [-58.38899428296273, -34.60116022220607]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_8',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 279.0,
   'VIVIEND': 716.0,
   'HOGARES': 153.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.03014052150337,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38749959759616, -34.601096422041216],
     [-58.386380569267146, -34.601044106861146],
     [-58.3861937265943, -34.60103258125392],
     [-58.38609710524013, -34.60210042181258],
     [-58.38608187585885, -34.602269076393426],
     [-58.38604361260957, -34.60322138847438],
     [-58.387215661913196, -34.603348388393606],
     [-58.387354477522145, -34.60335734754421],
     [-58.38742009245732, -34.60227962779345],
     [-58.38743510477483, -34.602159776356146],
     [-58.387451918440085, -34.60202563006632],
     [-58.38749959759616, -34.601096422041216]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_10_9',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 341.0,
   'VIVIEND': 660.0,
   'HOGARES': 161.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.01855118062868,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38893191794571, -34.60224660706493],
     [-58.38880179532311, -34.602232795755995],
     [-58.38743510477483, -34.602159776356146],
     [-58.38742009245732, -34.60227962779345],
     [-58.387354477522145, -34.60335734754421],
     [-58.38871069921507, -34.60344472787768],
     [-58.38886237139884, -34.603458341054576],
     [-58.38893191794571, -34.60224660706493]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_1',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 512.0,
   'VIVIEND': 385.0,
   'HOGARES': 219.0,
   'HOGARES_': 44.0,
   'AREA_KM': 0.017663796994731,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39168941868018, -34.604882924327725],
     [-58.390222633276835, -34.6047809338339],
     [-58.390218201829214, -34.60498001818934],
     [-58.3901966445888, -34.60587269248088],
     [-58.390190078465395, -34.60597987299459],
     [-58.390296366005245, -34.60598606294949],
     [-58.39138672506123, -34.60607994569643],
     [-58.39159699966439, -34.606093871403026],
     [-58.391608719956885, -34.605933031186126],
     [-58.39168941868018, -34.604882924327725]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_10',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 621.0,
   'VIVIEND': 453.0,
   'HOGARES': 272.0,
   'HOGARES_': 44.0,
   'AREA_KM': 0.018252428712503,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38871062893435, -34.60707688549951],
     [-58.38734267911666, -34.606990131744844],
     [-58.387215191274514, -34.606974559792455],
     [-58.387212150999176, -34.60704005166077],
     [-58.38713874587795, -34.608154104085685],
     [-58.38727986652927, -34.608165952105374],
     [-58.388560786628105, -34.608255188948554],
     [-58.388670567844144, -34.60826272048627],
     [-58.38867643403593, -34.60817884980814],
     [-58.388707905653426, -34.60717040610444],
     [-58.38871062893435, -34.60707688549951]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_11',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 266.0,
   'VIVIEND': 180.0,
   'HOGARES': 126.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.017321259609574,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.387215191274514, -34.606974559792455],
     [-58.38711606248047, -34.60696245602424],
     [-58.38593778245672, -34.60688735330544],
     [-58.385779962956704, -34.606883732742354],
     [-58.38577004087227, -34.607021826746895],
     [-58.385711519682374, -34.60795356157324],
     [-58.385712701395875, -34.60805743679537],
     [-58.38703552427083, -34.608145448463915],
     [-58.38713874587795, -34.608154104085685],
     [-58.387212150999176, -34.60704005166077],
     [-58.387215191274514, -34.606974559792455]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_12',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 933.0,
   'VIVIEND': 535.0,
   'HOGARES': 407.0,
   'HOGARES_': 61.0,
   'AREA_KM': 0.036318879953772,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.388670567844144, -34.60826272048627],
     [-58.388560786628105, -34.608255188948554],
     [-58.38727986652927, -34.608165952105374],
     [-58.38713874587795, -34.608154104085685],
     [-58.38703552427083, -34.608145448463915],
     [-58.385712701395875, -34.60805743679537],
     [-58.385679080613215, -34.60923221817486],
     [-58.38663270836509, -34.60930309897362],
     [-58.38672101706718, -34.609321464073],
     [-58.387059712220875, -34.60936766097795],
     [-58.38720440412729, -34.60938845506453],
     [-58.38757649700685, -34.60942474150267],
     [-58.3879107751811, -34.60945846839065],
     [-58.38808306696372, -34.60947582760611],
     [-58.38857541470908, -34.60952549449922],
     [-58.388670567844144, -34.60826272048627]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_13',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 666.0,
   'VIVIEND': 437.0,
   'HOGARES': 291.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.018199968130119,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.390073623970096, -34.60835779020993],
     [-58.38996912168942, -34.6083520236659],
     [-58.388670567844144, -34.60826272048627],
     [-58.38857541470908, -34.60952549449922],
     [-58.38895866450932, -34.60956417789406],
     [-58.38916127608873, -34.60958458211307],
     [-58.3899559033986, -34.60964048166819],
     [-58.390073623970096, -34.60835779020993]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_14',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 774.0,
   'VIVIEND': 506.0,
   'HOGARES': 289.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.018279555971771,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39143658346652, -34.608433313111874],
     [-58.390073623970096, -34.60835779020993],
     [-58.3899559033986, -34.60964048166819],
     [-58.39081296082203, -34.60970077909669],
     [-58.39135472263901, -34.60973884402561],
     [-58.391363685822434, -34.60961603093089],
     [-58.39143658346652, -34.608433313111874]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_2',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 428.0,
   'VIVIEND': 655.0,
   'HOGARES': 284.0,
   'HOGARES_': 20.0,
   'AREA_KM': 0.017859626099273,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.390222633276835, -34.6047809338339],
     [-58.38879487072825, -34.604665709748694],
     [-58.38874181794563, -34.605809846708475],
     [-58.38874199747051, -34.60589555209586],
     [-58.390190078465395, -34.60597987299459],
     [-58.3901966445888, -34.60587269248088],
     [-58.390218201829214, -34.60498001818934],
     [-58.390222633276835, -34.6047809338339]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_3',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 354.0,
   'VIVIEND': 321.0,
   'HOGARES': 198.0,
   'HOGARES_': 106.0,
   'AREA_KM': 0.018555693384279,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38879487072825, -34.604665709748694],
     [-58.38863033549899, -34.60465244079822],
     [-58.3873048539928, -34.60454993754037],
     [-58.387305233766476, -34.60469515085489],
     [-58.3873031138225, -34.605721429859315],
     [-58.387294856882576, -34.605810580782105],
     [-58.38742584371718, -34.605816436382526],
     [-58.3886088828439, -34.605887795184465],
     [-58.38874199747051, -34.60589555209586],
     [-58.38874181794563, -34.605809846708475],
     [-58.38879487072825, -34.604665709748694]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_4',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 667.0,
   'VIVIEND': 984.0,
   'HOGARES': 336.0,
   'HOGARES_': 55.0,
   'AREA_KM': 0.034977368810952,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.385994282221844, -34.60444538697886],
     [-58.38592564101119, -34.60443992120433],
     [-58.38589840716631, -34.60562055250911],
     [-58.38587923494238, -34.605722724794425],
     [-58.38585407129034, -34.605856865524764],
     [-58.385779962956704, -34.606883732742354],
     [-58.38593778245672, -34.60688735330544],
     [-58.38711606248047, -34.60696245602424],
     [-58.387215191274514, -34.606974559792455],
     [-58.38722074727249, -34.606858505487246],
     [-58.387284707074116, -34.60592085755279],
     [-58.387294856882576, -34.605810580782105],
     [-58.3873031138225, -34.605721429859315],
     [-58.387305233766476, -34.60469515085489],
     [-58.3873048539928, -34.60454993754037],
     [-58.385994282221844, -34.60444538697886]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_5',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 529.0,
   'VIVIEND': 481.0,
   'HOGARES': 251.0,
   'HOGARES_': 90.0,
   'AREA_KM': 0.017718239617795,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.38874199747051, -34.60589555209586],
     [-58.3886088828439, -34.605887795184465],
     [-58.38742584371718, -34.605816436382526],
     [-58.387294856882576, -34.605810580782105],
     [-58.387284707074116, -34.60592085755279],
     [-58.38722074727249, -34.606858505487246],
     [-58.387215191274514, -34.606974559792455],
     [-58.38734267911666, -34.606990131744844],
     [-58.38871062893435, -34.60707688549951],
     [-58.38874215077182, -34.606010835293716],
     [-58.38874199747051, -34.60589555209586]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_6',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 447.0,
   'VIVIEND': 522.0,
   'HOGARES': 209.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.017250053655027,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.390190078465395, -34.60597987299459],
     [-58.38874199747051, -34.60589555209586],
     [-58.38874215077182, -34.606010835293716],
     [-58.38871062893435, -34.60707688549951],
     [-58.38884519270074, -34.60708541783412],
     [-58.39001420889086, -34.60714393746225],
     [-58.39014630567695, -34.60714929783984],
     [-58.39017927945181, -34.606155502533355],
     [-58.390190078465395, -34.60597987299459]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_7',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 525.0,
   'VIVIEND': 497.0,
   'HOGARES': 296.0,
   'HOGARES_': 38.0,
   'AREA_KM': 0.016333501739983,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39159699966439, -34.606093871403026],
     [-58.39138672506123, -34.60607994569643],
     [-58.390296366005245, -34.60598606294949],
     [-58.390190078465395, -34.60597987299459],
     [-58.39017927945181, -34.606155502533355],
     [-58.39014630567695, -34.60714929783984],
     [-58.390294754846636, -34.60715537201352],
     [-58.39131940483367, -34.60721611735047],
     [-58.39151519844905, -34.60723545732518],
     [-58.39152503513138, -34.607086517600386],
     [-58.39159699966439, -34.606093871403026]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_8',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 817.0,
   'VIVIEND': 609.0,
   'HOGARES': 353.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.016825568760339,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39151519844905, -34.60723545732518],
     [-58.39131940483367, -34.60721611735047],
     [-58.390294754846636, -34.60715537201352],
     [-58.39014630567695, -34.60714929783984],
     [-58.39014184668999, -34.6072817615765],
     [-58.390073623970096, -34.60835779020993],
     [-58.39143658346652, -34.608433313111874],
     [-58.39144538620691, -34.608298598340696],
     [-58.39151519844905, -34.60723545732518]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '1_11_9',
   'BARRIO': 'SAN NICOLAS',
   'COMUNA': '1',
   'POBLACI': 455.0,
   'VIVIEND': 431.0,
   'HOGARES': 219.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.01732899729967,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.39014630567695, -34.60714929783984],
     [-58.39001420889086, -34.60714393746225],
     [-58.38884519270074, -34.60708541783412],
     [-58.38871062893435, -34.60707688549951],
     [-58.388707905653426, -34.60717040610444],
     [-58.38867643403593, -34.60817884980814],
     [-58.388670567844144, -34.60826272048627],
     [-58.38996912168942, -34.6083520236659],
     [-58.390073623970096, -34.60835779020993],
     [-58.39014184668999, -34.6072817615765],
     [-58.39014630567695, -34.60714929783984]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_1',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 641.0,
   'VIVIEND': 300.0,
   'HOGARES': 250.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.077002677848101,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52961878771185, -34.61396139801502],
     [-58.52988643283426, -34.6137474625311],
     [-58.528760837270944, -34.61135011370871],
     [-58.5284889911639, -34.61155203398592],
     [-58.527950378268734, -34.61195209706065],
     [-58.52795141640499, -34.61195432311573],
     [-58.52755719018463, -34.612246367618205],
     [-58.5271547010214, -34.612541020863205],
     [-58.526746249936515, -34.612840042143795],
     [-58.52634154159936, -34.61313624315867],
     [-58.52593521290911, -34.613433640854495],
     [-58.52620257502434, -34.61364118034306],
     [-58.526536161603474, -34.613900093622085],
     [-58.527028789416626, -34.61428244470241],
     [-58.52757622527499, -34.61470737073134],
     [-58.52812332582656, -34.61513208318062],
     [-58.528518659348705, -34.614825247490245],
     [-58.52891475612757, -34.61451784670432],
     [-58.529089265912674, -34.61438239827168],
     [-58.529090031597576, -34.614384041117994],
     [-58.52961878771185, -34.61396139801502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_2',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 883.0,
   'VIVIEND': 404.0,
   'HOGARES': 353.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.06355302861765,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52566902088336, -34.615337954344334],
     [-58.5247769334526, -34.616030461234644],
     [-58.52579842670474, -34.61693656651871],
     [-58.52676372753001, -34.61618739351508],
     [-58.52812332582656, -34.61513208318062],
     [-58.52757622527499, -34.61470737073134],
     [-58.527028789416626, -34.61428244470241],
     [-58.526536161603474, -34.613900093622085],
     [-58.52620257502434, -34.61364118034306],
     [-58.52593521290911, -34.613433640854495],
     [-58.5252463289821, -34.613937945221075],
     [-58.525113863655626, -34.61403519723238],
     [-58.52501221583858, -34.614109757055886],
     [-58.52482346696409, -34.614234291304854],
     [-58.52451204084356, -34.61444853634807],
     [-58.52467030370882, -34.614562893932096],
     [-58.52480266379884, -34.614665644651716],
     [-58.52517946137045, -34.61495806108397],
     [-58.52566902088336, -34.615337954344334]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_3',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 927.0,
   'VIVIEND': 397.0,
   'HOGARES': 341.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.099022053170919,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52251779787896, -34.6159557439872],
     [-58.52135612480659, -34.616835613206014],
     [-58.52147878214707, -34.616950344115985],
     [-58.52174224225947, -34.61718071228086],
     [-58.52197314398089, -34.61738264468807],
     [-58.52209434875539, -34.61748878403436],
     [-58.52247202890408, -34.61781951851965],
     [-58.52261923204352, -34.617948391310456],
     [-58.523498116176185, -34.618721767269285],
     [-58.524641898741464, -34.61783414045094],
     [-58.52579842670474, -34.61693656651871],
     [-58.5247769334526, -34.616030461234644],
     [-58.52566902088336, -34.615337954344334],
     [-58.52517946137045, -34.61495806108397],
     [-58.52480266379884, -34.614665644651716],
     [-58.52467030370882, -34.614562893932096],
     [-58.52451204084356, -34.61444853634807],
     [-58.52445834924591, -34.614409830720824],
     [-58.52366826676019, -34.61504699563896],
     [-58.52351903417877, -34.615167282700064],
     [-58.52251779787896, -34.6159557439872]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_4',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 837.0,
   'VIVIEND': 344.0,
   'HOGARES': 294.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.067579053061485,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.520603105557946, -34.619270082745594],
     [-58.52075278891989, -34.61941360461691],
     [-58.5210726152988, -34.61972035651855],
     [-58.52158193854941, -34.62020884905784],
     [-58.522566130323945, -34.619444982052094],
     [-58.523498116176185, -34.618721767269285],
     [-58.52261923204352, -34.617948391310456],
     [-58.52247202890408, -34.61781951851965],
     [-58.52209434875539, -34.61748878403436],
     [-58.52197314398089, -34.61738264468807],
     [-58.52174224225947, -34.61718071228086],
     [-58.52147878214707, -34.616950344115985],
     [-58.52135612480659, -34.616835613206014],
     [-58.520411277451814, -34.61755677565833],
     [-58.52028842397587, -34.61765056709047],
     [-58.51952048129313, -34.618243046035644],
     [-58.51967160261441, -34.61837713187273],
     [-58.5199089930156, -34.618603009026245],
     [-58.52007350683864, -34.6187623700256],
     [-58.52024330506799, -34.618925179045625],
     [-58.520603105557946, -34.619270082745594]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_5',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 695.0,
   'VIVIEND': 279.0,
   'HOGARES': 258.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.055784192865826,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.518739330088856, -34.618844258646774],
     [-58.51829762110573, -34.61918066138501],
     [-58.5180718271637, -34.61935273766909],
     [-58.51793747398203, -34.619454771448304],
     [-58.51844157796852, -34.61993877240629],
     [-58.51851087784301, -34.62000536111124],
     [-58.51893128222472, -34.62040904534615],
     [-58.51941110398616, -34.62086981373887],
     [-58.51991136454373, -34.6213142324333],
     [-58.52074248487465, -34.62076425690473],
     [-58.52158193854941, -34.62020884905784],
     [-58.5210726152988, -34.61972035651855],
     [-58.52075278891989, -34.61941360461691],
     [-58.520603105557946, -34.619270082745594],
     [-58.52024330506799, -34.618925179045625],
     [-58.52007350683864, -34.6187623700256],
     [-58.5199089930156, -34.618603009026245],
     [-58.51967160261441, -34.61837713187273],
     [-58.51952048129313, -34.618243046035644],
     [-58.51887836379467, -34.61873834854052],
     [-58.518739330088856, -34.618844258646774]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_6',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 811.0,
   'VIVIEND': 315.0,
   'HOGARES': 309.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.064439139396727,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52158193854941, -34.62020884905784],
     [-58.52074248487465, -34.62076425690473],
     [-58.51991136454373, -34.6213142324333],
     [-58.52023904379695, -34.621514221127526],
     [-58.520340886255305, -34.62157875114644],
     [-58.52107502426394, -34.621944250691136],
     [-58.521574291374364, -34.62156337322665],
     [-58.52168769860254, -34.62147683871833],
     [-58.52224562234891, -34.62105261981473],
     [-58.52236609528764, -34.62096143328665],
     [-58.522496784701445, -34.620862495075116],
     [-58.522878208488315, -34.62057343139932],
     [-58.52327801955069, -34.62027048401078],
     [-58.52340223616866, -34.6201762663904],
     [-58.52434649472703, -34.61946015185343],
     [-58.52537791537215, -34.618677857741446],
     [-58.525495912352675, -34.61858828909759],
     [-58.52539200499175, -34.618496933150006],
     [-58.52507005540465, -34.618213644549115],
     [-58.52474341991306, -34.61792627291789],
     [-58.524641898741464, -34.61783414045094],
     [-58.523498116176185, -34.618721767269285],
     [-58.522566130323945, -34.619444982052094],
     [-58.52158193854941, -34.62020884905784]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_7',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 754.0,
   'VIVIEND': 306.0,
   'HOGARES': 258.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.061697953059196,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.522878208488315, -34.62057343139932],
     [-58.522496784701445, -34.620862495075116],
     [-58.52236609528764, -34.62096143328665],
     [-58.52224562234891, -34.62105261981473],
     [-58.52168769860254, -34.62147683871833],
     [-58.521574291374364, -34.62156337322665],
     [-58.52107502426394, -34.621944250691136],
     [-58.52121716443816, -34.62201319734549],
     [-58.52159740313261, -34.62220336831299],
     [-58.52216324785781, -34.62248633597466],
     [-58.52317507384069, -34.62173928200787],
     [-58.52330295568162, -34.62164492184661],
     [-58.52372082579961, -34.621336471073526],
     [-58.52426836034676, -34.62093224830941],
     [-58.52522182924173, -34.62022844650361],
     [-58.52535268623064, -34.62013182910408],
     [-58.52638480381592, -34.61937128699224],
     [-58.5259406960115, -34.618978837979256],
     [-58.525495912352675, -34.61858828909759],
     [-58.52537791537215, -34.618677857741446],
     [-58.52434649472703, -34.61946015185343],
     [-58.52340223616866, -34.6201762663904],
     [-58.52327801955069, -34.62027048401078],
     [-58.522878208488315, -34.62057343139932]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_1_8',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 976.0,
   'VIVIEND': 442.0,
   'HOGARES': 353.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.104545952610373,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51713960701971, -34.62006098132544],
     [-58.51634828457198, -34.62066225342456],
     [-58.516829947917316, -34.62109267873366],
     [-58.51730565060099, -34.62151916107546],
     [-58.51768989821788, -34.62186321719617],
     [-58.51779277947891, -34.62195514350502],
     [-58.51828707304026, -34.622396895394616],
     [-58.51877949652449, -34.62283688552589],
     [-58.51929408768318, -34.623296793119714],
     [-58.519686619571736, -34.623647529202124],
     [-58.52009270820103, -34.62401044083501],
     [-58.520246992936606, -34.62389776145187],
     [-58.521028795594866, -34.62332330017518],
     [-58.521173200557655, -34.62321717369115],
     [-58.52216324785781, -34.62248633597466],
     [-58.52159740313261, -34.62220336831299],
     [-58.52121716443816, -34.62201319734549],
     [-58.52107502426394, -34.621944250691136],
     [-58.520340886255305, -34.62157875114644],
     [-58.52023904379695, -34.621514221127526],
     [-58.51991136454373, -34.6213142324333],
     [-58.51941110398616, -34.62086981373887],
     [-58.51893128222472, -34.62040904534615],
     [-58.51851087784301, -34.62000536111124],
     [-58.51844157796852, -34.61993877240629],
     [-58.51793747398203, -34.619454771448304],
     [-58.517606357654756, -34.61970640235768],
     [-58.51713960701971, -34.62006098132544]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_1',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 745.0,
   'VIVIEND': 333.0,
   'HOGARES': 281.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.048882919683442,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49554268305336, -34.621865063611445],
     [-58.49652027438116, -34.62267311428915],
     [-58.49706189102782, -34.62224380379496],
     [-58.4972553728542, -34.62209043777347],
     [-58.497599755115644, -34.621817449716694],
     [-58.496619863180186, -34.621008985676305],
     [-58.49571804529878, -34.6202647889718],
     [-58.49484538590976, -34.61954473300203],
     [-58.49430607442233, -34.61997156843323],
     [-58.49389075059595, -34.620300340649386],
     [-58.49376829048638, -34.620397696830146],
     [-58.493977485437846, -34.62057074371601],
     [-58.4941892376531, -34.62074597269842],
     [-58.4943990308675, -34.62091958208244],
     [-58.49452429367218, -34.62102321248048],
     [-58.494639586832676, -34.6211185354164],
     [-58.49487861007649, -34.62131615063191],
     [-58.495090025141685, -34.62149088515435],
     [-58.49530229326238, -34.62166639373267],
     [-58.49554268305336, -34.621865063611445]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_10',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 726.0,
   'VIVIEND': 292.0,
   'HOGARES': 262.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.046942435005635,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48744227426003, -34.62390347427674],
     [-58.48729791264957, -34.62401744822496],
     [-58.48648879898296, -34.62465627674429],
     [-58.48637041345905, -34.624755455640674],
     [-58.48532340185497, -34.62559059172238],
     [-58.485984036216784, -34.62582687805218],
     [-58.486651660723865, -34.626065694656305],
     [-58.48731607993867, -34.625534430701336],
     [-58.48743574432399, -34.62543870137698],
     [-58.48839032541601, -34.624679271590914],
     [-58.4889279935752, -34.62425154748101],
     [-58.489031387382184, -34.62416927090165],
     [-58.48947102166649, -34.62381931271069],
     [-58.488534299315894, -34.62304049308855],
     [-58.4883195924556, -34.623210399174134],
     [-58.48798496808562, -34.62347469690107],
     [-58.48744227426003, -34.62390347427674]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_11',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 810.0,
   'VIVIEND': 342.0,
   'HOGARES': 304.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.085127088367343,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.488534299315894, -34.62304049308855],
     [-58.48906131112797, -34.62262354528777],
     [-58.48961148267396, -34.622188280036056],
     [-58.48886683695784, -34.621567168280485],
     [-58.488730928409346, -34.621451844095425],
     [-58.487876885911305, -34.620726875225785],
     [-58.48773663434825, -34.6206072549945],
     [-58.487603095133416, -34.62071355100894],
     [-58.48666345702694, -34.621463042511586],
     [-58.48558369975759, -34.62232431471772],
     [-58.48451192619101, -34.62317916730847],
     [-58.48463079033799, -34.62328034416071],
     [-58.485503151000884, -34.6240220223295],
     [-58.48657330744026, -34.623169907970386],
     [-58.487310029088945, -34.62379526055466],
     [-58.48744227426003, -34.62390347427674],
     [-58.48798496808562, -34.62347469690107],
     [-58.4883195924556, -34.623210399174134],
     [-58.488534299315894, -34.62304049308855]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_12',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 900.0,
   'VIVIEND': 438.0,
   'HOGARES': 346.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.059090150250137,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485503151000884, -34.6240220223295],
     [-58.48463079033799, -34.62328034416071],
     [-58.48451192619101, -34.62317916730847],
     [-58.48436986174542, -34.62329250358593],
     [-58.48343766142145, -34.62403908126079],
     [-58.48282603695245, -34.62452890668138],
     [-58.48276752299201, -34.62457574775162],
     [-58.48412149684195, -34.62512207194092],
     [-58.48496394812249, -34.62546199468951],
     [-58.48532340185497, -34.62559059172238],
     [-58.48637041345905, -34.624755455640674],
     [-58.48648879898296, -34.62465627674429],
     [-58.48729791264957, -34.62401744822496],
     [-58.48744227426003, -34.62390347427674],
     [-58.487310029088945, -34.62379526055466],
     [-58.48657330744026, -34.623169907970386],
     [-58.485503151000884, -34.6240220223295]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_2',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1127.0,
   'VIVIEND': 424.0,
   'HOGARES': 350.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.084029647208862,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49284051294852, -34.61962468226479],
     [-58.49364251826687, -34.62029357281105],
     [-58.49376829048638, -34.620397696830146],
     [-58.49389075059595, -34.620300340649386],
     [-58.49430607442233, -34.61997156843323],
     [-58.49484538590976, -34.61954473300203],
     [-58.49405684400032, -34.61889394560154],
     [-58.493915394036954, -34.61877419190081],
     [-58.49319204564112, -34.618161551539515],
     [-58.493033470781754, -34.61802637838263],
     [-58.49217737993776, -34.617296650937334],
     [-58.49203550892825, -34.617175345813266],
     [-58.4909608881659, -34.61803574945903],
     [-58.490015350011184, -34.61879273332988],
     [-58.4898879482809, -34.61889424171932],
     [-58.49001328865913, -34.61900104581604],
     [-58.490882499783915, -34.61974043319925],
     [-58.490989778277815, -34.619831747332164],
     [-58.491763993150045, -34.620480163485546],
     [-58.49271226151758, -34.61972612337604],
     [-58.49284051294852, -34.61962468226479]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_3',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 967.0,
   'VIVIEND': 342.0,
   'HOGARES': 318.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.06528906079486,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.495090025141685, -34.62149088515435],
     [-58.49487861007649, -34.62131615063191],
     [-58.494639586832676, -34.6211185354164],
     [-58.49452429367218, -34.62102321248048],
     [-58.4943990308675, -34.62091958208244],
     [-58.4941892376531, -34.62074597269842],
     [-58.493977485437846, -34.62057074371601],
     [-58.49376829048638, -34.620397696830146],
     [-58.49364251826687, -34.62029357281105],
     [-58.49284051294852, -34.61962468226479],
     [-58.49271226151758, -34.61972612337604],
     [-58.491763993150045, -34.620480163485546],
     [-58.49190220448908, -34.62059597672072],
     [-58.49269458080111, -34.62125156570396],
     [-58.49290437217811, -34.62142517764498],
     [-58.49311561301164, -34.621599915630355],
     [-58.493325832179245, -34.621773808422354],
     [-58.493564598603996, -34.621971355832834],
     [-58.49380507045513, -34.62217038122213],
     [-58.49401640027855, -34.62234518802565],
     [-58.49422909444115, -34.62252119129993],
     [-58.494469058123734, -34.62271965210693],
     [-58.49544392246631, -34.623526233119506],
     [-58.49652027438116, -34.62267311428915],
     [-58.49554268305336, -34.621865063611445],
     [-58.49530229326238, -34.62166639373267],
     [-58.495090025141685, -34.62149088515435]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_4',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 780.0,
   'VIVIEND': 328.0,
   'HOGARES': 284.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.048816769379556,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.493325832179245, -34.621773808422354],
     [-58.49311561301164, -34.621599915630355],
     [-58.49290437217811, -34.62142517764498],
     [-58.49269458080111, -34.62125156570396],
     [-58.49254290733585, -34.6213722379115],
     [-58.491610800439666, -34.622115216228984],
     [-58.49171722608775, -34.622192656511494],
     [-58.491827063901866, -34.62228291291286],
     [-58.49203855984406, -34.62245659632936],
     [-58.492249886267295, -34.62263020899181],
     [-58.492393128576566, -34.62274785141352],
     [-58.492489333975165, -34.6228274061979],
     [-58.49272963525422, -34.62302615202796],
     [-58.49294096496923, -34.62320089024674],
     [-58.49315425549474, -34.623377247338546],
     [-58.49339387822783, -34.623575428624896],
     [-58.49363341685921, -34.62377346860863],
     [-58.49384338691872, -34.62394707881489],
     [-58.49405378395744, -34.62412111108398],
     [-58.49436678202958, -34.62437990592923],
     [-58.494906547297596, -34.6239521549103],
     [-58.49544392246631, -34.623526233119506],
     [-58.494469058123734, -34.62271965210693],
     [-58.49422909444115, -34.62252119129993],
     [-58.49401640027855, -34.62234518802565],
     [-58.49380507045513, -34.62217038122213],
     [-58.493564598603996, -34.621971355832834],
     [-58.493325832179245, -34.621773808422354]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_5',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 889.0,
   'VIVIEND': 350.0,
   'HOGARES': 313.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.117087542365432,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.488730928409346, -34.621451844095425],
     [-58.48886683695784, -34.621567168280485],
     [-58.48961148267396, -34.622188280036056],
     [-58.48906131112797, -34.62262354528777],
     [-58.488534299315894, -34.62304049308855],
     [-58.48947102166649, -34.62381931271069],
     [-58.49000195055668, -34.62339679660582],
     [-58.49054351969229, -34.62296568410094],
     [-58.4906799543922, -34.62285713069992],
     [-58.491610800439666, -34.622115216228984],
     [-58.49254290733585, -34.6213722379115],
     [-58.49269458080111, -34.62125156570396],
     [-58.49190220448908, -34.62059597672072],
     [-58.491763993150045, -34.620480163485546],
     [-58.490989778277815, -34.619831747332164],
     [-58.490882499783915, -34.61974043319925],
     [-58.49001328865913, -34.61900104581604],
     [-58.4898879482809, -34.61889424171932],
     [-58.488811663634344, -34.619751246254324],
     [-58.48773663434825, -34.6206072549945],
     [-58.487876885911305, -34.620726875225785],
     [-58.488730928409346, -34.621451844095425]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_6',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 908.0,
   'VIVIEND': 338.0,
   'HOGARES': 314.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.048722082777746,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492249886267295, -34.62263020899181],
     [-58.49203855984406, -34.62245659632936],
     [-58.491827063901866, -34.62228291291286],
     [-58.49171722608775, -34.622192656511494],
     [-58.491610800439666, -34.622115216228984],
     [-58.4906799543922, -34.62285713069992],
     [-58.49054351969229, -34.62296568410094],
     [-58.49065642537182, -34.6230599549681],
     [-58.490752118108624, -34.623138807004146],
     [-58.49095960925087, -34.62330988752873],
     [-58.4911739182486, -34.623486599961176],
     [-58.4914133659469, -34.62368401052116],
     [-58.49165375212627, -34.623882195036934],
     [-58.491865337227644, -34.62405665334109],
     [-58.49207947963701, -34.62423322335322],
     [-58.49231918726789, -34.62443084331667],
     [-58.4925579586463, -34.62462761795308],
     [-58.492769973633706, -34.62480249709959],
     [-58.49298071125106, -34.62497624941828],
     [-58.493291493303204, -34.62523244187814],
     [-58.49345577723507, -34.62510197681209],
     [-58.4936004727708, -34.62498722085852],
     [-58.494325988565876, -34.624412240762396],
     [-58.49436678202958, -34.62437990592923],
     [-58.49405378395744, -34.62412111108398],
     [-58.49384338691872, -34.62394707881489],
     [-58.49363341685921, -34.62377346860863],
     [-58.49339387822783, -34.623575428624896],
     [-58.49315425549474, -34.623377247338546],
     [-58.49294096496923, -34.62320089024674],
     [-58.49272963525422, -34.62302615202796],
     [-58.492489333975165, -34.6228274061979],
     [-58.492393128576566, -34.62274785141352],
     [-58.492249886267295, -34.62263020899181]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_7',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 824.0,
   'VIVIEND': 349.0,
   'HOGARES': 308.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.033025977578163,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491780854090685, -34.62485928674798],
     [-58.491243707730774, -34.62528681199547],
     [-58.492216012996735, -34.62608722182257],
     [-58.49275426692455, -34.62565948080744],
     [-58.493291493303204, -34.62523244187814],
     [-58.49298071125106, -34.62497624941828],
     [-58.492769973633706, -34.62480249709959],
     [-58.4925579586463, -34.62462761795308],
     [-58.49231918726789, -34.62443084331667],
     [-58.49207947963701, -34.62423322335322],
     [-58.491865337227644, -34.62405665334109],
     [-58.49165375212627, -34.623882195036934],
     [-58.4914133659469, -34.62368401052116],
     [-58.4911739182486, -34.623486599961176],
     [-58.49095960925087, -34.62330988752873],
     [-58.490752118108624, -34.623138807004146],
     [-58.49065642537182, -34.6230599549681],
     [-58.49054351969229, -34.62296568410094],
     [-58.49000195055668, -34.62339679660582],
     [-58.49087384066426, -34.624113577054274],
     [-58.491780854090685, -34.62485928674798]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_8',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 733.0,
   'VIVIEND': 285.0,
   'HOGARES': 254.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.064400680148929,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48926281167499, -34.62539683793255],
     [-58.489368134809595, -34.62548350590025],
     [-58.489714697220805, -34.62576878440273],
     [-58.490168631945465, -34.62614241887001],
     [-58.491140340271976, -34.62694206263802],
     [-58.492155459081665, -34.62613533549412],
     [-58.492216012996735, -34.62608722182257],
     [-58.491243707730774, -34.62528681199547],
     [-58.491780854090685, -34.62485928674798],
     [-58.49087384066426, -34.624113577054274],
     [-58.49000195055668, -34.62339679660582],
     [-58.48947102166649, -34.62381931271069],
     [-58.489031387382184, -34.62416927090165],
     [-58.4889279935752, -34.62425154748101],
     [-58.48839032541601, -34.624679271590914],
     [-58.48850962124517, -34.624776852962896],
     [-58.48882507535577, -34.62503650656236],
     [-58.48926281167499, -34.62539683793255]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_10_9',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 957.0,
   'VIVIEND': 404.0,
   'HOGARES': 350.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.053686016177118,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489714697220805, -34.62576878440273],
     [-58.489368134809595, -34.62548350590025],
     [-58.48926281167499, -34.62539683793255],
     [-58.48882507535577, -34.62503650656236],
     [-58.48850962124517, -34.624776852962896],
     [-58.48839032541601, -34.624679271590914],
     [-58.48743574432399, -34.62543870137698],
     [-58.48731607993867, -34.625534430701336],
     [-58.486651660723865, -34.626065694656305],
     [-58.487259393205434, -34.626283111022246],
     [-58.4876250736485, -34.62641388311827],
     [-58.48787615954637, -34.62650179010478],
     [-58.488516017715405, -34.62672567249012],
     [-58.48915485690368, -34.62694919961503],
     [-58.490494756600505, -34.6274577794867],
     [-58.49075537606742, -34.62725046443522],
     [-58.491140340271976, -34.62694206263802],
     [-58.490168631945465, -34.62614241887001],
     [-58.489714697220805, -34.62576878440273]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_1',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 850.0,
   'VIVIEND': 406.0,
   'HOGARES': 309.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.090061862689257,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48915485690368, -34.62694919961503],
     [-58.488516017715405, -34.62672567249012],
     [-58.48787615954637, -34.62650179010478],
     [-58.48710561099389, -34.62711568468924],
     [-58.487165508311676, -34.627140179954054],
     [-58.487059337724375, -34.62735963980324],
     [-58.48700314456086, -34.627475778817825],
     [-58.48680732408465, -34.62789920174945],
     [-58.48676092290345, -34.6279997047646],
     [-58.48659285602507, -34.62836368469297],
     [-58.486189540663666, -34.6292372918182],
     [-58.48613206944237, -34.629361740573465],
     [-58.485652965536104, -34.63039881241627],
     [-58.4855753129316, -34.630565518561504],
     [-58.48634528102279, -34.630756429682634],
     [-58.4871168911036, -34.630142328779435],
     [-58.48748254803894, -34.62985133704641],
     [-58.487633136953455, -34.62973144617041],
     [-58.48868511800999, -34.628894247496845],
     [-58.48962081911871, -34.628149530968436],
     [-58.490494756600505, -34.6274577794867],
     [-58.48915485690368, -34.62694919961503]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_10',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 678.0,
   'VIVIEND': 354.0,
   'HOGARES': 296.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.019177064873762,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48226214205912, -34.62841487910353],
     [-58.48110659935585, -34.62813118319536],
     [-58.48083456216238, -34.62806164585926],
     [-58.480688014154865, -34.62838350140281],
     [-58.48029204731085, -34.629250468176615],
     [-58.48171061492135, -34.629604976719705],
     [-58.48217511873815, -34.628605246822524],
     [-58.48226214205912, -34.62841487910353]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_11',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 645.0,
   'VIVIEND': 291.0,
   'HOGARES': 251.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.0442522629731,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47976899512477, -34.627788769018544],
     [-58.4786961928227, -34.627511376722104],
     [-58.478526480793086, -34.627467525225725],
     [-58.47759775324153, -34.62722545690654],
     [-58.47753507587904, -34.62736138126707],
     [-58.47703807844047, -34.62844152077818],
     [-58.47814130080923, -34.62871568430224],
     [-58.47922058969503, -34.62898385511069],
     [-58.480005182891084, -34.629178818447215],
     [-58.48029204731085, -34.629250468176615],
     [-58.480688014154865, -34.62838350140281],
     [-58.48083456216238, -34.62806164585926],
     [-58.47993760089495, -34.62783233724732],
     [-58.47976899512477, -34.627788769018544]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_2',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1113.0,
   'VIVIEND': 503.0,
   'HOGARES': 433.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.059708112825245,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485820216782784, -34.62706501914755],
     [-58.48562098464068, -34.62749238454846],
     [-58.485574752620984, -34.627592816664425],
     [-58.485358831611414, -34.62806250904939],
     [-58.48528160690271, -34.62823048260894],
     [-58.48498513596163, -34.62887497943614],
     [-58.48489845784524, -34.62906041939899],
     [-58.48433836151234, -34.630258840253354],
     [-58.4855753129316, -34.630565518561504],
     [-58.485652965536104, -34.63039881241627],
     [-58.48613206944237, -34.629361740573465],
     [-58.486189540663666, -34.6292372918182],
     [-58.48659285602507, -34.62836368469297],
     [-58.48676092290345, -34.6279997047646],
     [-58.48680732408465, -34.62789920174945],
     [-58.48700314456086, -34.627475778817825],
     [-58.487059337724375, -34.62735963980324],
     [-58.487165508311676, -34.627140179954054],
     [-58.48710561099389, -34.62711568468924],
     [-58.48787615954637, -34.62650179010478],
     [-58.4876250736485, -34.62641388311827],
     [-58.487259393205434, -34.626283111022246],
     [-58.486651660723865, -34.626065694656305],
     [-58.48643328035295, -34.62624031641402],
     [-58.48595172064174, -34.62664189171151],
     [-58.486006931202155, -34.62666448701481],
     [-58.485820216782784, -34.62706501914755]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_3',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 856.0,
   'VIVIEND': 425.0,
   'HOGARES': 354.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.062718834510326,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48532340185497, -34.62559059172238],
     [-58.48496394812249, -34.62546199468951],
     [-58.48412149684195, -34.62512207194092],
     [-58.48276752299201, -34.62457574775162],
     [-58.48214209242702, -34.62507662841338],
     [-58.481738349068635, -34.626075997179086],
     [-58.483030946318976, -34.62639191825374],
     [-58.48317015745372, -34.62642555725179],
     [-58.48434868559919, -34.62671035638737],
     [-58.48455673715572, -34.62676060143356],
     [-58.4856185537337, -34.62701702860063],
     [-58.485820216782784, -34.62706501914755],
     [-58.486006931202155, -34.62666448701481],
     [-58.48595172064174, -34.62664189171151],
     [-58.48643328035295, -34.62624031641402],
     [-58.486651660723865, -34.626065694656305],
     [-58.485984036216784, -34.62582687805218],
     [-58.48532340185497, -34.62559059172238]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_4',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1021.0,
   'VIVIEND': 427.0,
   'HOGARES': 394.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.051517257780045,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479608543160246, -34.62552271431464],
     [-58.479557877577236, -34.62563553927991],
     [-58.479220583242984, -34.62637242322915],
     [-58.47915390691476, -34.62651722230247],
     [-58.47936672662238, -34.626572616452044],
     [-58.4802215865762, -34.62679531558822],
     [-58.480376985166274, -34.62683578649371],
     [-58.48128552432162, -34.627070794427404],
     [-58.481738349068635, -34.626075997179086],
     [-58.48214209242702, -34.62507662841338],
     [-58.48131984590456, -34.624733936564084],
     [-58.4811867667706, -34.624676702742626],
     [-58.481132666142926, -34.624653400849965],
     [-58.48013960560531, -34.624226148440584],
     [-58.479608543160246, -34.62552271431464]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_5',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 944.0,
   'VIVIEND': 310.0,
   'HOGARES': 301.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.068717361771263,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477405909833244, -34.622934594763066],
     [-58.477206892783656, -34.6228310964555],
     [-58.47681423367205, -34.62366988305619],
     [-58.476414157776894, -34.62452451433291],
     [-58.47635020330212, -34.62466431156487],
     [-58.477316640786185, -34.624923145697856],
     [-58.47746837116873, -34.62496284610637],
     [-58.47851268225064, -34.62523616847481],
     [-58.4784554584919, -34.62536378270847],
     [-58.47805581963294, -34.62623130651585],
     [-58.47824546471291, -34.62628071956919],
     [-58.47915390691476, -34.62651722230247],
     [-58.479220583242984, -34.62637242322915],
     [-58.479557877577236, -34.62563553927991],
     [-58.479608543160246, -34.62552271431464],
     [-58.48013960560531, -34.624226148440584],
     [-58.47915524522783, -34.62380254874865],
     [-58.47877569748622, -34.62363921750392],
     [-58.47819874742507, -34.623357247194335],
     [-58.477515727242015, -34.62299169470763],
     [-58.477405909833244, -34.622934594763066]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_6',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 510.0,
   'VIVIEND': 262.0,
   'HOGARES': 183.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.091765575112108,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47759775324153, -34.62722545690654],
     [-58.478526480793086, -34.627467525225725],
     [-58.4786961928227, -34.627511376722104],
     [-58.47915390691476, -34.62651722230247],
     [-58.47824546471291, -34.62628071956919],
     [-58.47805581963294, -34.62623130651585],
     [-58.4784554584919, -34.62536378270847],
     [-58.47851268225064, -34.62523616847481],
     [-58.47746837116873, -34.62496284610637],
     [-58.477316640786185, -34.624923145697856],
     [-58.47635020330212, -34.62466431156487],
     [-58.475889826904194, -34.62567035757804],
     [-58.47543616730821, -34.626661752965624],
     [-58.47486837499214, -34.627902315107136],
     [-58.47599032636013, -34.62818114417091],
     [-58.47703807844047, -34.62844152077818],
     [-58.47753507587904, -34.62736138126707],
     [-58.47759775324153, -34.62722545690654]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_7',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1079.0,
   'VIVIEND': 410.0,
   'HOGARES': 377.0,
   'HOGARES_': 39.0,
   'AREA_KM': 0.055590349261262,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48128552432162, -34.627070794427404],
     [-58.480376985166274, -34.62683578649371],
     [-58.4802215865762, -34.62679531558822],
     [-58.47936672662238, -34.626572616452044],
     [-58.47915390691476, -34.62651722230247],
     [-58.4786961928227, -34.627511376722104],
     [-58.47976899512477, -34.627788769018544],
     [-58.47993760089495, -34.62783233724732],
     [-58.48083456216238, -34.62806164585926],
     [-58.48110659935585, -34.62813118319536],
     [-58.48226214205912, -34.62841487910353],
     [-58.48364168104269, -34.628753596704776],
     [-58.48409798002927, -34.627760057996646],
     [-58.48285698861664, -34.62746237938902],
     [-58.482713686178045, -34.62742683928538],
     [-58.48144467255691, -34.62711196763101],
     [-58.48128552432162, -34.627070794427404]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_8',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 839.0,
   'VIVIEND': 390.0,
   'HOGARES': 344.0,
   'HOGARES_': 36.0,
   'AREA_KM': 0.046047920536771,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485820216782784, -34.62706501914755],
     [-58.4856185537337, -34.62701702860063],
     [-58.48455673715572, -34.62676060143356],
     [-58.48434868559919, -34.62671035638737],
     [-58.48317015745372, -34.62642555725179],
     [-58.483030946318976, -34.62639191825374],
     [-58.481738349068635, -34.626075997179086],
     [-58.48128552432162, -34.627070794427404],
     [-58.48144467255691, -34.62711196763101],
     [-58.482713686178045, -34.62742683928538],
     [-58.48285698861664, -34.62746237938902],
     [-58.48409798002927, -34.627760057996646],
     [-58.485358831611414, -34.62806250904939],
     [-58.485574752620984, -34.627592816664425],
     [-58.48562098464068, -34.62749238454846],
     [-58.485820216782784, -34.62706501914755]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_11_9',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1085.0,
   'VIVIEND': 391.0,
   'HOGARES': 381.0,
   'HOGARES_': 45.0,
   'AREA_KM': 0.049822307879135,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48309110994426, -34.62994954544991],
     [-58.48433836151234, -34.630258840253354],
     [-58.48489845784524, -34.62906041939899],
     [-58.48498513596163, -34.62887497943614],
     [-58.48528160690271, -34.62823048260894],
     [-58.485358831611414, -34.62806250904939],
     [-58.48409798002927, -34.627760057996646],
     [-58.48364168104269, -34.628753596704776],
     [-58.48226214205912, -34.62841487910353],
     [-58.48217511873815, -34.628605246822524],
     [-58.48171061492135, -34.629604976719705],
     [-58.48287742776977, -34.62989655236069],
     [-58.48309110994426, -34.62994954544991]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_1',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1006.0,
   'VIVIEND': 412.0,
   'HOGARES': 347.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.035423118753627,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48634528102279, -34.630756429682634],
     [-58.4855753129316, -34.630565518561504],
     [-58.48433836151234, -34.630258840253354],
     [-58.48309110994426, -34.62994954544991],
     [-58.48260097921836, -34.631006325531004],
     [-58.482856327786, -34.63107072076251],
     [-58.4838436446053, -34.631317316239915],
     [-58.485079247262014, -34.63162583075744],
     [-58.484972810878986, -34.63184902110444],
     [-58.48542698297211, -34.63148745544902],
     [-58.48612484323582, -34.63093182580906],
     [-58.48626146707921, -34.63082313660587],
     [-58.48634528102279, -34.630756429682634]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_10',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 612.0,
   'VIVIEND': 306.0,
   'HOGARES': 246.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.017285827263676,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485079247262014, -34.63162583075744],
     [-58.4838436446053, -34.631317316239915],
     [-58.48376138925474, -34.63149331785589],
     [-58.483375313897945, -34.632325433042325],
     [-58.48330523365644, -34.63247643205305],
     [-58.4829814809521, -34.63317057645817],
     [-58.48286899164299, -34.633409329425355],
     [-58.48286920248246, -34.63340937031558],
     [-58.48311152671306, -34.63333070726857],
     [-58.48413081038358, -34.632519388731154],
     [-58.484972810878986, -34.63184902110444],
     [-58.485079247262014, -34.63162583075744]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_2',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 875.0,
   'VIVIEND': 443.0,
   'HOGARES': 370.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.046281304706454,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48309110994426, -34.62994954544991],
     [-58.48287742776977, -34.62989655236069],
     [-58.48171061492135, -34.629604976719705],
     [-58.48162077833717, -34.62979830221666],
     [-58.481224557533174, -34.63065914504179],
     [-58.48076548298653, -34.631656616640285],
     [-58.48089814170404, -34.631689625363066],
     [-58.48213672307892, -34.63200753550145],
     [-58.483375313897945, -34.632325433042325],
     [-58.48376138925474, -34.63149331785589],
     [-58.4838436446053, -34.631317316239915],
     [-58.482856327786, -34.63107072076251],
     [-58.48260097921836, -34.631006325531004],
     [-58.48309110994426, -34.62994954544991]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_3',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 807.0,
   'VIVIEND': 295.0,
   'HOGARES': 309.0,
   'HOGARES_': 85.0,
   'AREA_KM': 0.032905890194654,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4798081902236, -34.630309982759805],
     [-58.47975556299483, -34.63042520238024],
     [-58.4794235320013, -34.63115602918621],
     [-58.479356426712386, -34.63130329312469],
     [-58.48053211638025, -34.63159862233007],
     [-58.48076548298653, -34.631656616640285],
     [-58.481224557533174, -34.63065914504179],
     [-58.48162077833717, -34.62979830221666],
     [-58.48171061492135, -34.629604976719705],
     [-58.48029204731085, -34.629250468176615],
     [-58.4798081902236, -34.630309982759805]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_4',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 629.0,
   'VIVIEND': 300.0,
   'HOGARES': 243.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.03787751379168,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48029204731085, -34.629250468176615],
     [-58.480005182891084, -34.629178818447215],
     [-58.47922058969503, -34.62898385511069],
     [-58.47814130080923, -34.62871568430224],
     [-58.47765145604824, -34.62977638837823],
     [-58.477589969084335, -34.629909495638444],
     [-58.47720205069536, -34.630743774852874],
     [-58.478281451066614, -34.63102822160777],
     [-58.47832956734165, -34.630923777951416],
     [-58.47873288722109, -34.63004583080735],
     [-58.4798081902236, -34.630309982759805],
     [-58.48029204731085, -34.629250468176615]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_5',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 605.0,
   'VIVIEND': 239.0,
   'HOGARES': 189.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.049064820358872,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47551059383698, -34.62923106390181],
     [-58.47507215545515, -34.63018956815089],
     [-58.476116608685864, -34.63045861496477],
     [-58.476269882063185, -34.63049810538753],
     [-58.47720205069536, -34.630743774852874],
     [-58.477589969084335, -34.629909495638444],
     [-58.47765145604824, -34.62977638837823],
     [-58.47814130080923, -34.62871568430224],
     [-58.47703807844047, -34.62844152077818],
     [-58.47599032636013, -34.62818114417091],
     [-58.47590192647379, -34.62837538084747],
     [-58.47551059383698, -34.62923106390181]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_6',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 601.0,
   'VIVIEND': 242.0,
   'HOGARES': 214.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.052349396965615,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.474748515359764, -34.630897000933665],
     [-58.47577807397992, -34.63121020738502],
     [-58.475892924259284, -34.631245124886995],
     [-58.476832690632584, -34.63153790939113],
     [-58.47720205069536, -34.630743774852874],
     [-58.476269882063185, -34.63049810538753],
     [-58.476116608685864, -34.63045861496477],
     [-58.47507215545515, -34.63018956815089],
     [-58.47551059383698, -34.62923106390181],
     [-58.47590192647379, -34.62837538084747],
     [-58.47599032636013, -34.62818114417091],
     [-58.47486837499214, -34.627902315107136],
     [-58.474389822052935, -34.628947934549714],
     [-58.47395341627524, -34.62990143458558],
     [-58.473653445408395, -34.63055696046143],
     [-58.47460844690269, -34.63085433827233],
     [-58.474748515359764, -34.630897000933665]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_7',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 659.0,
   'VIVIEND': 282.0,
   'HOGARES': 238.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.032714810879648,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.478281451066614, -34.63102822160777],
     [-58.47720205069536, -34.630743774852874],
     [-58.476832690632584, -34.63153790939113],
     [-58.47699474348652, -34.63158838388511],
     [-58.47789438730561, -34.631867643648384],
     [-58.4789498725542, -34.632195256779205],
     [-58.47899415621812, -34.6320981373954],
     [-58.47916762793343, -34.631717547568115],
     [-58.479356426712386, -34.63130329312469],
     [-58.4794235320013, -34.63115602918621],
     [-58.47975556299483, -34.63042520238024],
     [-58.4798081902236, -34.630309982759805],
     [-58.47873288722109, -34.63004583080735],
     [-58.47832956734165, -34.630923777951416],
     [-58.478281451066614, -34.63102822160777]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_8',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 753.0,
   'VIVIEND': 352.0,
   'HOGARES': 311.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.025423756483674,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47916762793343, -34.631717547568115],
     [-58.47899415621812, -34.6320981373954],
     [-58.4789498725542, -34.632195256779205],
     [-58.47887535654845, -34.63235871873108],
     [-58.47884495392096, -34.63242534302355],
     [-58.4788057796099, -34.632511264398765],
     [-58.47878065611789, -34.63256225404585],
     [-58.48016887408438, -34.6329937567704],
     [-58.48019518782746, -34.63293417505146],
     [-58.48141335139857, -34.63331449026282],
     [-58.48151661938886, -34.633347009847554],
     [-58.48153501328973, -34.63330721795627],
     [-58.4815970073911, -34.63317298193428],
     [-58.48165908647508, -34.633038675441526],
     [-58.48031883064235, -34.63262711250392],
     [-58.48036771167743, -34.632520836959976],
     [-58.480555825906634, -34.63211207381769],
     [-58.48076548298653, -34.631656616640285],
     [-58.48053211638025, -34.63159862233007],
     [-58.479356426712386, -34.63130329312469],
     [-58.47916762793343, -34.631717547568115]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_12_9',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 737.0,
   'VIVIEND': 390.0,
   'HOGARES': 308.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.034890652266264,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48213672307892, -34.63200753550145],
     [-58.48089814170404, -34.631689625363066],
     [-58.48076548298653, -34.631656616640285],
     [-58.480555825906634, -34.63211207381769],
     [-58.48036771167743, -34.632520836959976],
     [-58.48031883064235, -34.63262711250392],
     [-58.48165908647508, -34.633038675441526],
     [-58.4815970073911, -34.63317298193428],
     [-58.48153501328973, -34.63330721795627],
     [-58.48151661938886, -34.633347009847554],
     [-58.482461371911455, -34.63364467972243],
     [-58.48271948045221, -34.63372556263674],
     [-58.48286920248246, -34.63340937031558],
     [-58.48286899164299, -34.633409329425355],
     [-58.4829814809521, -34.63317057645817],
     [-58.48330523365644, -34.63247643205305],
     [-58.483375313897945, -34.632325433042325],
     [-58.48213672307892, -34.63200753550145]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_1',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 718.0,
   'VIVIEND': 249.0,
   'HOGARES': 226.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.064802139570065,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.494106073256205, -34.6254330818125],
     [-58.49401693445405, -34.6253544420261],
     [-58.4936004727708, -34.62498722085852],
     [-58.49345577723507, -34.62510197681209],
     [-58.493291493303204, -34.62523244187814],
     [-58.49275426692455, -34.62565948080744],
     [-58.492216012996735, -34.62608722182257],
     [-58.492155459081665, -34.62613533549412],
     [-58.49200257230602, -34.626467135922276],
     [-58.49325619270571, -34.62700479096463],
     [-58.49361260795923, -34.627157660288034],
     [-58.494478132426146, -34.62752884965754],
     [-58.49463550892425, -34.627595921832196],
     [-58.495827471631934, -34.6281040591625],
     [-58.49593142591351, -34.62815058059317],
     [-58.496350226283305, -34.628337439257706],
     [-58.49690780847214, -34.627900308460724],
     [-58.49633800703953, -34.627402434311776],
     [-58.49624409186135, -34.62732034676157],
     [-58.4952875640141, -34.62648116183541],
     [-58.495170556008844, -34.6263785160445],
     [-58.49497608298829, -34.62620779144577],
     [-58.494909781342805, -34.626148723922036],
     [-58.49417467443945, -34.62549355765086],
     [-58.494106073256205, -34.6254330818125]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_10',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 593.0,
   'VIVIEND': 282.0,
   'HOGARES': 230.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.041688904901892,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48873358864322, -34.63433350766753],
     [-58.48817453231923, -34.63385270642707],
     [-58.4879096645819, -34.63362487232447],
     [-58.48769081742334, -34.633436605998675],
     [-58.48718955211114, -34.633005507026276],
     [-58.487099134023524, -34.632927778040184],
     [-58.486393094635574, -34.632320517924974],
     [-58.48629526396148, -34.632236099577824],
     [-58.4862036544222, -34.632157102532084],
     [-58.485836079560364, -34.63295739060254],
     [-58.48532297848751, -34.634074256347],
     [-58.485797230257724, -34.63419078809722],
     [-58.486567311385144, -34.63436014820895],
     [-58.486719828382746, -34.63439371008086],
     [-58.487606639436855, -34.634571139234204],
     [-58.48783123859807, -34.634612220243866],
     [-58.48830897045826, -34.6346647269151],
     [-58.488476774993615, -34.63453757789719],
     [-58.48873358864322, -34.63433350766753]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_11',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 619.0,
   'VIVIEND': 344.0,
   'HOGARES': 287.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.016250470776975,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48542698297211, -34.63148745544902],
     [-58.484972810878986, -34.63184902110444],
     [-58.48413081038358, -34.632519388731154],
     [-58.4843965598904, -34.6325875817409],
     [-58.48460241170872, -34.632640503126986],
     [-58.485836079560364, -34.63295739060254],
     [-58.4862036544222, -34.632157102532084],
     [-58.48542698297211, -34.63148745544902]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_12',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 601.0,
   'VIVIEND': 316.0,
   'HOGARES': 267.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.034962078655809,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48413081038358, -34.632519388731154],
     [-58.48311152671306, -34.63333070726857],
     [-58.48286920248246, -34.63340937031558],
     [-58.48271948045221, -34.63372556263674],
     [-58.48271971446375, -34.63372590584539],
     [-58.48286533059915, -34.63377172729254],
     [-58.483936617637056, -34.634084646542384],
     [-58.48405829140564, -34.63412018895739],
     [-58.48517481806417, -34.6343946383752],
     [-58.48520598295378, -34.63432730815576],
     [-58.48525273019379, -34.634226312810284],
     [-58.48532297848751, -34.634074256347],
     [-58.485836079560364, -34.63295739060254],
     [-58.48460241170872, -34.632640503126986],
     [-58.4843965598904, -34.6325875817409],
     [-58.48413081038358, -34.632519388731154]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_2',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 753.0,
   'VIVIEND': 316.0,
   'HOGARES': 255.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.03752480012399,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49361260795923, -34.627157660288034],
     [-58.49325619270571, -34.62700479096463],
     [-58.49319396695889, -34.62714058241156],
     [-58.49275387056688, -34.628104291811376],
     [-58.49343952848389, -34.62839722212702],
     [-58.494138398411316, -34.62869584944366],
     [-58.49527430700743, -34.62918111899591],
     [-58.49567655498717, -34.628865656050515],
     [-58.495828749234335, -34.628746317991514],
     [-58.496350226283305, -34.628337439257706],
     [-58.49593142591351, -34.62815058059317],
     [-58.495827471631934, -34.6281040591625],
     [-58.49463550892425, -34.627595921832196],
     [-58.494478132426146, -34.62752884965754],
     [-58.49361260795923, -34.627157660288034]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_3',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 725.0,
   'VIVIEND': 322.0,
   'HOGARES': 261.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.05931443043071,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49343952848389, -34.62839722212702],
     [-58.49275387056688, -34.628104291811376],
     [-58.49319396695889, -34.62714058241156],
     [-58.49325619270571, -34.62700479096463],
     [-58.49200257230602, -34.626467135922276],
     [-58.492155459081665, -34.62613533549412],
     [-58.491140340271976, -34.62694206263802],
     [-58.49075537606742, -34.62725046443522],
     [-58.490494756600505, -34.6274577794867],
     [-58.49129805343047, -34.62800140147106],
     [-58.49223361302805, -34.62863449398993],
     [-58.492445711895165, -34.62877902118318],
     [-58.493070423526795, -34.629204504751364],
     [-58.49348201579368, -34.629484896961586],
     [-58.49371337788279, -34.629642515770506],
     [-58.494273656076025, -34.629965614236596],
     [-58.49480579449288, -34.629548359069254],
     [-58.49527430700743, -34.62918111899591],
     [-58.494138398411316, -34.62869584944366],
     [-58.49343952848389, -34.62839722212702]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_4',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 605.0,
   'VIVIEND': 287.0,
   'HOGARES': 248.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.024989877553642,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49129805343047, -34.62800140147106],
     [-58.490494756600505, -34.6274577794867],
     [-58.48962081911871, -34.628149530968436],
     [-58.48989765158851, -34.62827066781261],
     [-58.490566512817175, -34.62854904042353],
     [-58.490736498145935, -34.6286201992795],
     [-58.49097388160769, -34.6287194411315],
     [-58.49184571217521, -34.629082760228876],
     [-58.4929666955829, -34.62954587151795],
     [-58.49331470063845, -34.629728538551426],
     [-58.49348201579368, -34.629484896961586],
     [-58.493070423526795, -34.629204504751364],
     [-58.492445711895165, -34.62877902118318],
     [-58.49223361302805, -34.62863449398993],
     [-58.49129805343047, -34.62800140147106]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_5',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 810.0,
   'VIVIEND': 377.0,
   'HOGARES': 315.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.06093965521273,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4940137172796, -34.63016983791983],
     [-58.49417272951247, -34.63004416211856],
     [-58.494273656076025, -34.629965614236596],
     [-58.49371337788279, -34.629642515770506],
     [-58.49348201579368, -34.629484896961586],
     [-58.49331470063845, -34.629728538551426],
     [-58.4929666955829, -34.62954587151795],
     [-58.49184571217521, -34.629082760228876],
     [-58.49097388160769, -34.6287194411315],
     [-58.490736498145935, -34.6286201992795],
     [-58.490566512817175, -34.62854904042353],
     [-58.48989765158851, -34.62827066781261],
     [-58.48962081911871, -34.628149530968436],
     [-58.48868511800999, -34.628894247496845],
     [-58.48977892708323, -34.62942753534105],
     [-58.49080662786194, -34.62992857478],
     [-58.491882058664004, -34.63045283373905],
     [-58.49297889103855, -34.63098757090193],
     [-58.493748071233306, -34.63037976676927],
     [-58.4940137172796, -34.63016983791983]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_6',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 840.0,
   'VIVIEND': 321.0,
   'HOGARES': 278.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.067850783300161,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491882058664004, -34.63045283373905],
     [-58.49080662786194, -34.62992857478],
     [-58.48977892708323, -34.62942753534105],
     [-58.48868511800999, -34.628894247496845],
     [-58.487633136953455, -34.62973144617041],
     [-58.48748254803894, -34.62985133704641],
     [-58.4886061877877, -34.63040829143026],
     [-58.488778565189314, -34.63049374838042],
     [-58.489614040589935, -34.63090209146708],
     [-58.490490339942994, -34.631330349250554],
     [-58.49066561824526, -34.63141692962885],
     [-58.4917494206463, -34.63195252582572],
     [-58.491971896190954, -34.631783316311015],
     [-58.492394183946715, -34.631449619919415],
     [-58.49297889103855, -34.63098757090193],
     [-58.491882058664004, -34.63045283373905]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_7',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 722.0,
   'VIVIEND': 299.0,
   'HOGARES': 254.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.054175634637654,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49066561824526, -34.63141692962885],
     [-58.490490339942994, -34.631330349250554],
     [-58.489614040589935, -34.63090209146708],
     [-58.48889900147823, -34.6314811252355],
     [-58.488778308050605, -34.6315778420453],
     [-58.48791947711109, -34.6322657043786],
     [-58.48806383987176, -34.63239130927464],
     [-58.488729327181524, -34.63296497654885],
     [-58.488845142851154, -34.633064811738386],
     [-58.48955402092234, -34.63368121195675],
     [-58.49017845047187, -34.6331845196082],
     [-58.49041711329816, -34.632994675344975],
     [-58.491239989150486, -34.63234004363778],
     [-58.49138776822978, -34.63222768410613],
     [-58.491579576133255, -34.63230982261249],
     [-58.491650618053725, -34.63202769078093],
     [-58.4917494206463, -34.63195252582572],
     [-58.49066561824526, -34.63141692962885]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_8',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 785.0,
   'VIVIEND': 331.0,
   'HOGARES': 290.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.040986777192831,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4871168911036, -34.630142328779435],
     [-58.48634528102279, -34.630756429682634],
     [-58.48626146707921, -34.63082313660587],
     [-58.48712702364031, -34.631576212078336],
     [-58.48791947711109, -34.6322657043786],
     [-58.488778308050605, -34.6315778420453],
     [-58.48889900147823, -34.6314811252355],
     [-58.489614040589935, -34.63090209146708],
     [-58.488778565189314, -34.63049374838042],
     [-58.4886061877877, -34.63040829143026],
     [-58.48748254803894, -34.62985133704641],
     [-58.4871168911036, -34.630142328779435]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_13_9',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 726.0,
   'VIVIEND': 327.0,
   'HOGARES': 281.0,
   'HOGARES_': 34.0,
   'AREA_KM': 0.046086239635825,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48626146707921, -34.63082313660587],
     [-58.48612484323582, -34.63093182580906],
     [-58.48542698297211, -34.63148745544902],
     [-58.4862036544222, -34.632157102532084],
     [-58.48629526396148, -34.632236099577824],
     [-58.486393094635574, -34.632320517924974],
     [-58.487099134023524, -34.632927778040184],
     [-58.48718955211114, -34.633005507026276],
     [-58.48769081742334, -34.633436605998675],
     [-58.4879096645819, -34.63362487232447],
     [-58.48817453231923, -34.63385270642707],
     [-58.48873358864322, -34.63433350766753],
     [-58.488846535123784, -34.63424369406874],
     [-58.48955402092234, -34.63368121195675],
     [-58.488845142851154, -34.633064811738386],
     [-58.488729327181524, -34.63296497654885],
     [-58.48806383987176, -34.63239130927464],
     [-58.48791947711109, -34.6322657043786],
     [-58.48712702364031, -34.631576212078336],
     [-58.48626146707921, -34.63082313660587]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_1',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 902.0,
   'VIVIEND': 389.0,
   'HOGARES': 334.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.064877525911137,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.498878666440795, -34.632028084931484],
     [-58.499376048575364, -34.63222321967164],
     [-58.499951403121564, -34.63245023025504],
     [-58.50044078580052, -34.63265444766144],
     [-58.50093629577005, -34.63228119170894],
     [-58.49981627195374, -34.63128526187328],
     [-58.499695586212155, -34.63117818497075],
     [-58.500197816669846, -34.630794788960515],
     [-58.49974772029605, -34.63039788090208],
     [-58.498944017857376, -34.62968910224003],
     [-58.49844809327579, -34.63007375892574],
     [-58.49832937051028, -34.63016590712396],
     [-58.49747965557906, -34.63083418619188],
     [-58.49732735964042, -34.63071225666626],
     [-58.49657178491016, -34.63015133731692],
     [-58.49579725438156, -34.630744794406546],
     [-58.495602201946205, -34.6308618904166],
     [-58.495802452094466, -34.630961203265514],
     [-58.496843186415, -34.63132394757669],
     [-58.497985073448184, -34.63172200616693],
     [-58.498670072755054, -34.63195659674327],
     [-58.498878666440795, -34.632028084931484]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_10',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 839.0,
   'VIVIEND': 439.0,
   'HOGARES': 341.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.053185433395863,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491532034655236, -34.636738460010626],
     [-58.49117458288023, -34.63665312081673],
     [-58.49046240821658, -34.63648314289135],
     [-58.48907053177604, -34.636150843645815],
     [-58.48882496257107, -34.63609145942593],
     [-58.48851805643028, -34.63743167561332],
     [-58.490081397733505, -34.637815774077175],
     [-58.49036080328846, -34.63788930311184],
     [-58.491110914595545, -34.63808659689774],
     [-58.49130144746313, -34.638139017531444],
     [-58.4916698134896, -34.63822921292879],
     [-58.49271871520677, -34.63741008007768],
     [-58.49251517518101, -34.63695991541965],
     [-58.491532034655236, -34.636738460010626]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_11',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 709.0,
   'VIVIEND': 301.0,
   'HOGARES': 267.0,
   'HOGARES_': 68.0,
   'AREA_KM': 0.025863587419376,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48882496257107, -34.63609145942593],
     [-58.48704813248381, -34.635662105509134],
     [-58.48673517392608, -34.63678999299685],
     [-58.486713552969775, -34.63686070200771],
     [-58.48667950420408, -34.63697225883181],
     [-58.48757896671583, -34.637197009909976],
     [-58.48851805643028, -34.63743167561332],
     [-58.48882496257107, -34.63609145942593]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_2',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 925.0,
   'VIVIEND': 376.0,
   'HOGARES': 315.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.073013262059517,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497611589942, -34.62851518491367],
     [-58.49731824695501, -34.628258857812526],
     [-58.49690780847214, -34.627900308460724],
     [-58.496350226283305, -34.628337439257706],
     [-58.495828749234335, -34.628746317991514],
     [-58.49567655498717, -34.628865656050515],
     [-58.49527430700743, -34.62918111899591],
     [-58.49480579449288, -34.629548359069254],
     [-58.494273656076025, -34.629965614236596],
     [-58.494915611929784, -34.630433760219105],
     [-58.49509831859623, -34.630555402996436],
     [-58.49543118017753, -34.630777076561614],
     [-58.495602201946205, -34.6308618904166],
     [-58.49579725438156, -34.630744794406546],
     [-58.49657178491016, -34.63015133731692],
     [-58.49732735964042, -34.63071225666626],
     [-58.49747965557906, -34.63083418619188],
     [-58.49832937051028, -34.63016590712396],
     [-58.49844809327579, -34.63007375892574],
     [-58.498944017857376, -34.62968910224003],
     [-58.49773559223755, -34.62862353059152],
     [-58.497611589942, -34.62851518491367]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_3',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 813.0,
   'VIVIEND': 408.0,
   'HOGARES': 322.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.060728908066571,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.498878666440795, -34.632028084931484],
     [-58.498670072755054, -34.63195659674327],
     [-58.497985073448184, -34.63172200616693],
     [-58.496843186415, -34.63132394757669],
     [-58.495802452094466, -34.630961203265514],
     [-58.495602201946205, -34.6308618904166],
     [-58.49543118017753, -34.630777076561614],
     [-58.49509831859623, -34.630555402996436],
     [-58.494915611929784, -34.630433760219105],
     [-58.494273656076025, -34.629965614236596],
     [-58.49417272951247, -34.63004416211856],
     [-58.4940137172796, -34.63016983791983],
     [-58.493748071233306, -34.63037976676927],
     [-58.49297889103855, -34.63098757090193],
     [-58.494056131597326, -34.631267582759314],
     [-58.49417814884701, -34.63130973478059],
     [-58.494353932295866, -34.631370464441986],
     [-58.49476728530296, -34.63153803391754],
     [-58.49595767629275, -34.632020676874326],
     [-58.4976750334078, -34.63271689232694],
     [-58.4983843436966, -34.63300330889624],
     [-58.49909958863744, -34.6324314027767],
     [-58.499376048575364, -34.63222321967164],
     [-58.498878666440795, -34.632028084931484]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_4',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 832.0,
   'VIVIEND': 364.0,
   'HOGARES': 296.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.074843507504433,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49393255815561, -34.632528610768944],
     [-58.49386580211071, -34.63286067279038],
     [-58.49370932653561, -34.63363705692482],
     [-58.49410347560163, -34.63368759028348],
     [-58.495174734799605, -34.633823648865665],
     [-58.49548376728556, -34.63386293270028],
     [-58.496644835886265, -34.63401099654025],
     [-58.4970394144028, -34.634061309018136],
     [-58.49771337382367, -34.633531183634105],
     [-58.4983350305199, -34.633042126442646],
     [-58.4983843436966, -34.63300330889624],
     [-58.4976750334078, -34.63271689232694],
     [-58.49595767629275, -34.632020676874326],
     [-58.49476728530296, -34.63153803391754],
     [-58.494353932295866, -34.631370464441986],
     [-58.49417814884701, -34.63130973478059],
     [-58.49405986116581, -34.63189610813782],
     [-58.49404115260647, -34.63198864891949],
     [-58.49393255815561, -34.632528610768944]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_5',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 719.0,
   'VIVIEND': 312.0,
   'HOGARES': 262.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.060669726661503,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49417814884701, -34.63130973478059],
     [-58.494056131597326, -34.631267582759314],
     [-58.49297889103855, -34.63098757090193],
     [-58.492394183946715, -34.631449619919415],
     [-58.491971896190954, -34.631783316311015],
     [-58.4917494206463, -34.63195252582572],
     [-58.491650618053725, -34.63202769078093],
     [-58.491579576133255, -34.63230982261249],
     [-58.49138776822978, -34.63222768410613],
     [-58.491239989150486, -34.63234004363778],
     [-58.49041711329816, -34.632994675344975],
     [-58.49017845047187, -34.6331845196082],
     [-58.49132237481138, -34.6333311591134],
     [-58.49229129703935, -34.633455365501035],
     [-58.49287604281857, -34.633530293252036],
     [-58.49370932653561, -34.63363705692482],
     [-58.49386580211071, -34.63286067279038],
     [-58.49393255815561, -34.632528610768944],
     [-58.49404115260647, -34.63198864891949],
     [-58.49405986116581, -34.63189610813782],
     [-58.49417814884701, -34.63130973478059]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_6',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 593.0,
   'VIVIEND': 243.0,
   'HOGARES': 205.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.053842125198543,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48955402092234, -34.63368121195675],
     [-58.488846535123784, -34.63424369406874],
     [-58.48873358864322, -34.63433350766753],
     [-58.488476774993615, -34.63453757789719],
     [-58.48830897045826, -34.6346647269151],
     [-58.489202331651704, -34.634790170846394],
     [-58.490888180114965, -34.6350268369617],
     [-58.490872522641794, -34.63508416496603],
     [-58.490859805391075, -34.63513085276159],
     [-58.49080928657482, -34.6353302770961],
     [-58.49183021399656, -34.63545729534614],
     [-58.49188415609589, -34.635225688750694],
     [-58.49197526383572, -34.63482150886262],
     [-58.4920175440303, -34.63463889165277],
     [-58.49215382599396, -34.63404962884563],
     [-58.49229129703935, -34.633455365501035],
     [-58.49132237481138, -34.6333311591134],
     [-58.49017845047187, -34.6331845196082],
     [-58.48955402092234, -34.63368121195675]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_7',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 835.0,
   'VIVIEND': 301.0,
   'HOGARES': 291.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.080283424621955,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49499598487403, -34.63565682086465],
     [-58.49499859308052, -34.63565572007528],
     [-58.49499611705025, -34.635656717291575],
     [-58.49499755124992, -34.63565559345495],
     [-58.4954861168407, -34.63528716851772],
     [-58.4957096983375, -34.63511048713422],
     [-58.49656023627134, -34.63443834735224],
     [-58.4970394144028, -34.634061309018136],
     [-58.496644835886265, -34.63401099654025],
     [-58.49548376728556, -34.63386293270028],
     [-58.495174734799605, -34.633823648865665],
     [-58.49410347560163, -34.63368759028348],
     [-58.49370932653561, -34.63363705692482],
     [-58.49287604281857, -34.633530293252036],
     [-58.49229129703935, -34.633455365501035],
     [-58.49215382599396, -34.63404962884563],
     [-58.4920175440303, -34.63463889165277],
     [-58.49197526383572, -34.63482150886262],
     [-58.49188415609589, -34.635225688750694],
     [-58.49183021399656, -34.63545729534614],
     [-58.49183021401986, -34.635457362008786],
     [-58.491920706937684, -34.63546814664914],
     [-58.49321998843785, -34.63561888593341],
     [-58.49331482014389, -34.63562731293476],
     [-58.4934081194983, -34.635639120555645],
     [-58.49479364929518, -34.63581537023303],
     [-58.49499598487403, -34.63565682086465]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_8',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 599.0,
   'VIVIEND': 310.0,
   'HOGARES': 253.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.033713199905869,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491750759803764, -34.63579389395782],
     [-58.4917234513937, -34.63591199994771],
     [-58.491532034655236, -34.636738460010626],
     [-58.49251517518101, -34.63695991541965],
     [-58.49306025334413, -34.637067457803056],
     [-58.493198120256544, -34.63709326866689],
     [-58.49396496292065, -34.63646785858224],
     [-58.49415899511377, -34.63631569487166],
     [-58.49479577005529, -34.63581629984001],
     [-58.49479364929518, -34.63581537023303],
     [-58.4934081194983, -34.635639120555645],
     [-58.49331482014389, -34.63562731293476],
     [-58.49321998843785, -34.63561888593341],
     [-58.491920706937684, -34.63546814664914],
     [-58.49183021401986, -34.635457362008786],
     [-58.491750759803764, -34.63579389395782]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_14_9',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 887.0,
   'VIVIEND': 388.0,
   'HOGARES': 337.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.056241615889668,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49046240821658, -34.63648314289135],
     [-58.49117458288023, -34.63665312081673],
     [-58.491532034655236, -34.636738460010626],
     [-58.4917234513937, -34.63591199994771],
     [-58.491750759803764, -34.63579389395782],
     [-58.49183021401986, -34.635457362008786],
     [-58.49183021399656, -34.63545729534614],
     [-58.49080928657482, -34.6353302770961],
     [-58.490859805391075, -34.63513085276159],
     [-58.490872522641794, -34.63508416496603],
     [-58.490888180114965, -34.6350268369617],
     [-58.489202331651704, -34.634790170846394],
     [-58.48830897045826, -34.6346647269151],
     [-58.48811365214969, -34.63481272666821],
     [-58.48799525104039, -34.63490169563466],
     [-58.487912711700645, -34.634966572383156],
     [-58.48782437982213, -34.635035464384075],
     [-58.487716285897896, -34.63511964218352],
     [-58.48704813248381, -34.635662105509134],
     [-58.48882496257107, -34.63609145942593],
     [-58.48907053177604, -34.636150843645815],
     [-58.49046240821658, -34.63648314289135]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_1',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 633.0,
   'VIVIEND': 304.0,
   'HOGARES': 263.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.036887572592825,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501264555519136, -34.63337243518238],
     [-58.50102016268674, -34.63457533857803],
     [-58.50224208853027, -34.63473333005207],
     [-58.502388726762085, -34.63475229665436],
     [-58.50359617437585, -34.63491154688177],
     [-58.50485577642586, -34.63508506301849],
     [-58.50452187345432, -34.6347400344688],
     [-58.5044698745254, -34.63468631947827],
     [-58.50397264867078, -34.63417240024371],
     [-58.503655811221286, -34.63403813979786],
     [-58.50328605522098, -34.633881501603916],
     [-58.50299282377659, -34.63375483726493],
     [-58.502794098406135, -34.6336689865815],
     [-58.50180678370025, -34.633242543187244],
     [-58.501264555519136, -34.63337243518238]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_2',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 918.0,
   'VIVIEND': 417.0,
   'HOGARES': 347.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.054567632538378,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.499376048575364, -34.63222321967164],
     [-58.49909958863744, -34.6324314027767],
     [-58.4983843436966, -34.63300330889624],
     [-58.4983350305199, -34.633042126442646],
     [-58.498104464036686, -34.63419832952796],
     [-58.49956358812853, -34.63438698323069],
     [-58.50102016268674, -34.63457533857803],
     [-58.501264555519136, -34.63337243518238],
     [-58.50180678370025, -34.633242543187244],
     [-58.50057278234889, -34.632709548037184],
     [-58.50044078580052, -34.63265444766144],
     [-58.499951403121564, -34.63245023025504],
     [-58.499376048575364, -34.63222321967164]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_3',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 557.0,
   'VIVIEND': 247.0,
   'HOGARES': 202.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.059572825663552,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4983350305199, -34.633042126442646],
     [-58.49771337382367, -34.633531183634105],
     [-58.4970394144028, -34.634061309018136],
     [-58.49656023627134, -34.63443834735224],
     [-58.4957096983375, -34.63511048713422],
     [-58.4954861168407, -34.63528716851772],
     [-58.49499584566946, -34.63565687961571],
     [-58.49499589973588, -34.63565688757876],
     [-58.49479364929518, -34.63581537023303],
     [-58.49479577005529, -34.63581629984001],
     [-58.494957917808776, -34.63584224317434],
     [-58.4962475056607, -34.636012812062326],
     [-58.49632623575414, -34.63602293130289],
     [-58.49635403833005, -34.63587869719167],
     [-58.49715870160738, -34.63593530391839],
     [-58.49717162492285, -34.63586938427474],
     [-58.49734791700019, -34.63589553170179],
     [-58.49736016024995, -34.63583369676897],
     [-58.497691099096826, -34.63587578569041],
     [-58.497606500986876, -34.63629841874992],
     [-58.497573171640816, -34.63646490840389],
     [-58.49765078846575, -34.63646016784086],
     [-58.49848097444162, -34.6364135183119],
     [-58.49903149611153, -34.6364900462731],
     [-58.499038721033166, -34.636450536783464],
     [-58.499139009399954, -34.636464028089094],
     [-58.49915303761976, -34.636395290989135],
     [-58.499169617118184, -34.63631570797228],
     [-58.499321212535044, -34.635589741574215],
     [-58.49786377095814, -34.635398760569444],
     [-58.49788944716506, -34.63526994936079],
     [-58.49808227413807, -34.634309393175386],
     [-58.498104464036686, -34.63419832952796],
     [-58.4983350305199, -34.633042126442646]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_4',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 676.0,
   'VIVIEND': 301.0,
   'HOGARES': 247.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.04214623181808,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.499321212535044, -34.635589741574215],
     [-58.499169617118184, -34.63631570797228],
     [-58.49925414307486, -34.63632927431893],
     [-58.49932894468954, -34.63592931929163],
     [-58.49969942260319, -34.63598110926464],
     [-58.49969194143099, -34.63601836533597],
     [-58.50034845596366, -34.63610337635486],
     [-58.500361551767526, -34.636047597244044],
     [-58.500613762160164, -34.63607927990465],
     [-58.50071107014895, -34.636096855382696],
     [-58.50077567790314, -34.63577887508405],
     [-58.50102016268674, -34.63457533857803],
     [-58.49956358812853, -34.63438698323069],
     [-58.498104464036686, -34.63419832952796],
     [-58.49808227413807, -34.634309393175386],
     [-58.49788944716506, -34.63526994936079],
     [-58.49786377095814, -34.635398760569444],
     [-58.499321212535044, -34.635589741574215]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_5',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 820.0,
   'VIVIEND': 357.0,
   'HOGARES': 298.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.117445888737172,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50224208853027, -34.63473333005207],
     [-58.50102016268674, -34.63457533857803],
     [-58.50077567790314, -34.63577887508405],
     [-58.50071107014895, -34.636096855382696],
     [-58.500613762160164, -34.63607927990465],
     [-58.500361551767526, -34.636047597244044],
     [-58.50034845596366, -34.63610337635486],
     [-58.49969194143099, -34.63601836533597],
     [-58.49969942260319, -34.63598110926464],
     [-58.49932894468954, -34.63592931929163],
     [-58.49925414307486, -34.63632927431893],
     [-58.499169617118184, -34.63631570797228],
     [-58.49915303761976, -34.636395290989135],
     [-58.499139009399954, -34.636464028089094],
     [-58.49922532480111, -34.63647773476682],
     [-58.499209683716806, -34.636559993584484],
     [-58.49988103137707, -34.63665443935923],
     [-58.50001974933452, -34.636674890101276],
     [-58.50000929147083, -34.636723978172306],
     [-58.50049726607562, -34.63677368744515],
     [-58.50057769779372, -34.63677577518377],
     [-58.500611779040646, -34.636776680094165],
     [-58.50065284316972, -34.63676948417071],
     [-58.50066997642363, -34.636786239525435],
     [-58.50114415160548, -34.63684151392606],
     [-58.50127460358442, -34.63685767003887],
     [-58.501610149187556, -34.63689932432162],
     [-58.50170490458474, -34.63692182943215],
     [-58.50179037153438, -34.63694123883197],
     [-58.50202017478074, -34.636968277836544],
     [-58.5022067784399, -34.63699075291061],
     [-58.50251114061727, -34.63703164015685],
     [-58.502600529738224, -34.637056399860164],
     [-58.502952605080544, -34.63709600277016],
     [-58.502959571737115, -34.63705473256173],
     [-58.5030425635059, -34.63706435309617],
     [-58.50303551056219, -34.63710329937705],
     [-58.503071040785386, -34.63710497777449],
     [-58.50317090033589, -34.63710973344624],
     [-58.50335563016688, -34.63713220738358],
     [-58.50368768388113, -34.63717237822776],
     [-58.50395063427861, -34.63720369825525],
     [-58.50401982137095, -34.63720902698657],
     [-58.50420378517771, -34.637232204128736],
     [-58.5042957233579, -34.63724146864996],
     [-58.50439106990743, -34.63725122489815],
     [-58.504766751060686, -34.637296800456795],
     [-58.504889905743326, -34.637201405106374],
     [-58.505004766409876, -34.63721650627463],
     [-58.505069967323394, -34.63716505877509],
     [-58.50513396673778, -34.63711455923564],
     [-58.505268021302506, -34.63700873709613],
     [-58.50584179486881, -34.63655585608456],
     [-58.506217806057556, -34.63625903014895],
     [-58.505950073380916, -34.63603827866091],
     [-58.50561628287694, -34.63576240857734],
     [-58.50525828088, -34.635453869712826],
     [-58.50485577642586, -34.63508506301849],
     [-58.50359617437585, -34.63491154688177],
     [-58.502388726762085, -34.63475229665436],
     [-58.50224208853027, -34.63473333005207]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_6',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 613.0,
   'VIVIEND': 324.0,
   'HOGARES': 248.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.051414241497755,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502817360764354, -34.63845331067199],
     [-58.50333773894523, -34.63853236430435],
     [-58.504102569846026, -34.63792872246093],
     [-58.50443609394772, -34.63766543786643],
     [-58.50484056148421, -34.637346141533435],
     [-58.505004766409876, -34.63721650627463],
     [-58.504889905743326, -34.637201405106374],
     [-58.504766751060686, -34.637296800456795],
     [-58.50439106990743, -34.63725122489815],
     [-58.5042957233579, -34.63724146864996],
     [-58.50420378517771, -34.637232204128736],
     [-58.50401982137095, -34.63720902698657],
     [-58.50395063427861, -34.63720369825525],
     [-58.50368768388113, -34.63717237822776],
     [-58.50335563016688, -34.63713220738358],
     [-58.50317090033589, -34.63710973344624],
     [-58.503071040785386, -34.63710497777449],
     [-58.50303551056219, -34.63710329937705],
     [-58.5030425635059, -34.63706435309617],
     [-58.502959571737115, -34.63705473256173],
     [-58.502952605080544, -34.63709600277016],
     [-58.502600529738224, -34.637056399860164],
     [-58.50251114061727, -34.63703164015685],
     [-58.5022067784399, -34.63699075291061],
     [-58.50202017478074, -34.636968277836544],
     [-58.50179037153438, -34.63694123883197],
     [-58.50170490458474, -34.63692182943215],
     [-58.501610149187556, -34.63689932432162],
     [-58.50127460358442, -34.63685767003887],
     [-58.50114415160548, -34.63684151392606],
     [-58.50066997642363, -34.636786239525435],
     [-58.50065284316972, -34.63676948417071],
     [-58.500611779040646, -34.636776680094165],
     [-58.50057769779372, -34.63677577518377],
     [-58.50050195399829, -34.63715326625764],
     [-58.50031961659934, -34.63808769562737],
     [-58.50144735872506, -34.63824840004559],
     [-58.501795864733616, -34.63829807791399],
     [-58.502817360764354, -34.63845331067199]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_7',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 526.0,
   'VIVIEND': 285.0,
   'HOGARES': 225.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.040460394644737,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49885718016793, -34.637880389981916],
     [-58.4990800851644, -34.63791102814173],
     [-58.50031961659934, -34.63808769562737],
     [-58.50050195399829, -34.63715326625764],
     [-58.50057769779372, -34.63677577518377],
     [-58.50049726607562, -34.63677368744515],
     [-58.50000929147083, -34.636723978172306],
     [-58.50001974933452, -34.636674890101276],
     [-58.49988103137707, -34.63665443935923],
     [-58.499209683716806, -34.636559993584484],
     [-58.49922532480111, -34.63647773476682],
     [-58.499139009399954, -34.636464028089094],
     [-58.499038721033166, -34.636450536783464],
     [-58.49903149611153, -34.6364900462731],
     [-58.49848097444162, -34.6364135183119],
     [-58.49765078846575, -34.63646016784086],
     [-58.49758727559092, -34.63677744190876],
     [-58.497406171515124, -34.63768102134371],
     [-58.49885718016793, -34.637880389981916]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_8',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1073.0,
   'VIVIEND': 384.0,
   'HOGARES': 375.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.1052205941239,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49271871520677, -34.63741008007768],
     [-58.4916698134896, -34.63822921292879],
     [-58.49277981423834, -34.63837810021424],
     [-58.493017800429875, -34.63841156265285],
     [-58.4936120406035, -34.638490076018606],
     [-58.494241473404614, -34.63857463377233],
     [-58.4957103802964, -34.63876734499897],
     [-58.495955425344164, -34.63748149451595],
     [-58.496138963032294, -34.63750848678332],
     [-58.497217180485066, -34.637655088873615],
     [-58.497406171515124, -34.63768102134371],
     [-58.49758727559092, -34.63677744190876],
     [-58.49765078846575, -34.63646016784086],
     [-58.497573171640816, -34.63646490840389],
     [-58.497606500986876, -34.63629841874992],
     [-58.497691099096826, -34.63587578569041],
     [-58.49736016024995, -34.63583369676897],
     [-58.49734791700019, -34.63589553170179],
     [-58.49717162492285, -34.63586938427474],
     [-58.49715870160738, -34.63593530391839],
     [-58.49635403833005, -34.63587869719167],
     [-58.49632623575414, -34.63602293130289],
     [-58.4962475056607, -34.636012812062326],
     [-58.494957917808776, -34.63584224317434],
     [-58.49479577005529, -34.63581629984001],
     [-58.49415899511377, -34.63631569487166],
     [-58.49396496292065, -34.63646785858224],
     [-58.493198120256544, -34.63709326866689],
     [-58.49306025334413, -34.637067457803056],
     [-58.49251517518101, -34.63695991541965],
     [-58.49271871520677, -34.63741008007768]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_15_9',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1223.0,
   'VIVIEND': 544.0,
   'HOGARES': 459.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.019509632481679,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497406171515124, -34.63768102134371],
     [-58.497217180485066, -34.637655088873615],
     [-58.496138963032294, -34.63750848678332],
     [-58.495955425344164, -34.63748149451595],
     [-58.4957103802964, -34.63876734499897],
     [-58.49718832650053, -34.638962148660646],
     [-58.497201818838775, -34.63882897488852],
     [-58.497406171515124, -34.63768102134371]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_1',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 671.0,
   'VIVIEND': 303.0,
   'HOGARES': 270.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.070745202254295,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.508356647992024, -34.63833009431699],
     [-58.50853364685717, -34.63762705164828],
     [-58.5084541280353, -34.63761571226234],
     [-58.50819714129961, -34.63758160284769],
     [-58.50795362917536, -34.63754828337025],
     [-58.50770530511521, -34.6375149651821],
     [-58.50747141806521, -34.63748243666717],
     [-58.507229831369955, -34.63744911503695],
     [-58.50716857756627, -34.63744099086528],
     [-58.506978620618526, -34.63741579642235],
     [-58.50674377212506, -34.63738406233832],
     [-58.50650218684089, -34.637352330221525],
     [-58.50625193909441, -34.637319009763516],
     [-58.505993028496945, -34.637283305433044],
     [-58.50576876822578, -34.63725315666765],
     [-58.50575270282403, -34.637251605611056],
     [-58.505629209919285, -34.637239682743854],
     [-58.50537607559088, -34.63720636150382],
     [-58.505179727613296, -34.637179383796884],
     [-58.505069967323394, -34.63716505877509],
     [-58.505004766409876, -34.63721650627463],
     [-58.50484056148421, -34.637346141533435],
     [-58.50443609394772, -34.63766543786643],
     [-58.504102569846026, -34.63792872246093],
     [-58.50333773894523, -34.63853236430435],
     [-58.50391350489387, -34.63861991819763],
     [-58.50403365155881, -34.63863818752642],
     [-58.50533158767037, -34.63885105209739],
     [-58.50674814908597, -34.639090620809334],
     [-58.50809876940224, -34.63932871873584],
     [-58.508356647992024, -34.63833009431699]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_2',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1077.0,
   'VIVIEND': 482.0,
   'HOGARES': 408.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.068636259611025,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50945092913438, -34.639563279951226],
     [-58.50971381942507, -34.63856493247868],
     [-58.5098918262385, -34.63781646424698],
     [-58.509642819258275, -34.637781515422915],
     [-58.50939545626012, -34.63774820030802],
     [-58.50916060502728, -34.637714879925454],
     [-58.50891612881997, -34.63767997178214],
     [-58.50868224127566, -34.63764824106868],
     [-58.50853364685717, -34.63762705164828],
     [-58.508356647992024, -34.63833009431699],
     [-58.50809876940224, -34.63932871873584],
     [-58.50674814908597, -34.639090620809334],
     [-58.50533158767037, -34.63885105209739],
     [-58.50510479480758, -34.63972881334118],
     [-58.50509110369849, -34.63978170578959],
     [-58.50509236434626, -34.63978259699625],
     [-58.505336252198546, -34.63988132548849],
     [-58.50544265666318, -34.63991951429912],
     [-58.50639370805554, -34.64008350165697],
     [-58.50753588892359, -34.6402866530953],
     [-58.50763507601017, -34.640295155646825],
     [-58.507730498882204, -34.64027911586072],
     [-58.50783949187358, -34.64026607275284],
     [-58.507839658566915, -34.64026607488156],
     [-58.507839978470294, -34.64026624490052],
     [-58.50814860559967, -34.64039316450716],
     [-58.50912345249878, -34.640572496441244],
     [-58.50918681880711, -34.640524232541864],
     [-58.509220521608654, -34.640454853024636],
     [-58.50945092913438, -34.639563279951226]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_3',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 778.0,
   'VIVIEND': 331.0,
   'HOGARES': 282.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.021412454374626,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50533158767037, -34.63885105209739],
     [-58.50403365155881, -34.63863818752642],
     [-58.50391350489387, -34.63861991819763],
     [-58.50333773894523, -34.63853236430435],
     [-58.50241771095428, -34.63925471473922],
     [-58.503690948948496, -34.63947936543289],
     [-58.50510479480758, -34.63972881334118],
     [-58.50533158767037, -34.63885105209739]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_4',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 873.0,
   'VIVIEND': 413.0,
   'HOGARES': 344.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.047152182867825,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50509110369849, -34.63978170578959],
     [-58.50510479480758, -34.63972881334118],
     [-58.503690948948496, -34.63947936543289],
     [-58.50241771095428, -34.63925471473922],
     [-58.5019928670311, -34.639587037769445],
     [-58.50121786742703, -34.64019341593803],
     [-58.50187013470759, -34.64077652200755],
     [-58.50198384921261, -34.64088141571546],
     [-58.50260340247464, -34.64145340149227],
     [-58.502755221577665, -34.64158997234508],
     [-58.50288323137374, -34.64147316889816],
     [-58.5037245808564, -34.64081485621589],
     [-58.50393326226498, -34.64066570032727],
     [-58.504128485192155, -34.64052619660344],
     [-58.50509110369849, -34.63978170578959]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_5',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1051.0,
   'VIVIEND': 500.0,
   'HOGARES': 389.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.078257284910679,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50639370805554, -34.64008350165697],
     [-58.50544265666318, -34.63991951429912],
     [-58.505336252198546, -34.63988132548849],
     [-58.50509236434626, -34.63978259699625],
     [-58.50509110369849, -34.63978170578959],
     [-58.504128485192155, -34.64052619660344],
     [-58.50393326226498, -34.64066570032727],
     [-58.50406974408612, -34.64080044374747],
     [-58.504721697764374, -34.641388534637834],
     [-58.5054843963705, -34.64207651340977],
     [-58.506245828863385, -34.64276336101315],
     [-58.506363965785106, -34.6426739520032],
     [-58.50743007989636, -34.64186215192953],
     [-58.50860893920636, -34.640964383979515],
     [-58.50912345249878, -34.640572496441244],
     [-58.50814860559967, -34.64039316450716],
     [-58.507839978470294, -34.64026624490052],
     [-58.507839658566915, -34.64026607488156],
     [-58.50783949187358, -34.64026607275284],
     [-58.507730498882204, -34.64027911586072],
     [-58.50763507601017, -34.640295155646825],
     [-58.50753588892359, -34.6402866530953],
     [-58.50639370805554, -34.64008350165697]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_6',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1006.0,
   'VIVIEND': 429.0,
   'HOGARES': 356.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.092126362685181,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502755221577665, -34.64158997234508],
     [-58.50262823346926, -34.64170585982203],
     [-58.5016193143874, -34.64247506423047],
     [-58.502340511715715, -34.643186104099456],
     [-58.50310295049228, -34.643871984957485],
     [-58.50386915273771, -34.64456123999844],
     [-58.50505822761666, -34.643661742717605],
     [-58.506245828863385, -34.64276336101315],
     [-58.5054843963705, -34.64207651340977],
     [-58.504721697764374, -34.641388534637834],
     [-58.50406974408612, -34.64080044374747],
     [-58.50393326226498, -34.64066570032727],
     [-58.5037245808564, -34.64081485621589],
     [-58.50288323137374, -34.64147316889816],
     [-58.502755221577665, -34.64158997234508]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_7',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 782.0,
   'VIVIEND': 348.0,
   'HOGARES': 289.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.061470680312507,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502755221577665, -34.64158997234508],
     [-58.50260340247464, -34.64145340149227],
     [-58.50198384921261, -34.64088141571546],
     [-58.50187013470759, -34.64077652200755],
     [-58.50121786742703, -34.64019341593803],
     [-58.50106046421431, -34.640316564982136],
     [-58.500586718587016, -34.64068713812686],
     [-58.50005700777754, -34.64110160009943],
     [-58.49968921383966, -34.64138939018307],
     [-58.49921826689106, -34.64175777398861],
     [-58.498887519772175, -34.642016465828696],
     [-58.49927067884333, -34.642361776319284],
     [-58.49965426731943, -34.64270750799314],
     [-58.500289496850755, -34.643280063986204],
     [-58.50041454948435, -34.64339361764483],
     [-58.5016193143874, -34.64247506423047],
     [-58.50262823346926, -34.64170585982203],
     [-58.502755221577665, -34.64158997234508]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_8',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 853.0,
   'VIVIEND': 370.0,
   'HOGARES': 312.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.079084884155989,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.503242067031735, -34.64503518535653],
     [-58.503747773656265, -34.644653042037945],
     [-58.50386915273771, -34.64456123999844],
     [-58.50310295049228, -34.643871984957485],
     [-58.502340511715715, -34.643186104099456],
     [-58.5016193143874, -34.64247506423047],
     [-58.50041454948435, -34.64339361764483],
     [-58.5008530462459, -34.64379186403256],
     [-58.50104433581143, -34.64396560793714],
     [-58.501166575206206, -34.644071837706505],
     [-58.50067024439041, -34.64447819294284],
     [-58.50018080826856, -34.6448789806006],
     [-58.49964758499871, -34.64531562482924],
     [-58.50067374279525, -34.64579707304456],
     [-58.50169803122784, -34.64626449901423],
     [-58.50223423140403, -34.64582615477403],
     [-58.50272579343754, -34.645425287818384],
     [-58.503242067031735, -34.64503518535653]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_16_9',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 953.0,
   'VIVIEND': 400.0,
   'HOGARES': 338.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.076837228916965,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497872012003015, -34.64281092301687],
     [-58.496536370892564, -34.64385581457885],
     [-58.49758482207414, -34.6443477053259],
     [-58.498620416322865, -34.64483367527394],
     [-58.49906189625018, -34.64504079921491],
     [-58.49964758499871, -34.64531562482924],
     [-58.50018080826856, -34.6448789806006],
     [-58.50067024439041, -34.64447819294284],
     [-58.501166575206206, -34.644071837706505],
     [-58.50104433581143, -34.64396560793714],
     [-58.5008530462459, -34.64379186403256],
     [-58.50041454948435, -34.64339361764483],
     [-58.500289496850755, -34.643280063986204],
     [-58.49965426731943, -34.64270750799314],
     [-58.49927067884333, -34.642361776319284],
     [-58.498887519772175, -34.642016465828696],
     [-58.49793930426725, -34.642758297618755],
     [-58.497872012003015, -34.64281092301687]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_1',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 748.0,
   'VIVIEND': 391.0,
   'HOGARES': 313.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.037607806217939,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502817360764354, -34.63845331067199],
     [-58.501795864733616, -34.63829807791399],
     [-58.50144735872506, -34.63824840004559],
     [-58.50121813602502, -34.63948432645278],
     [-58.50007990182365, -34.63933341197041],
     [-58.499841886967076, -34.64058574683423],
     [-58.49968921383966, -34.64138939018307],
     [-58.50005700777754, -34.64110160009943],
     [-58.500586718587016, -34.64068713812686],
     [-58.50106046421431, -34.640316564982136],
     [-58.50121786742703, -34.64019341593803],
     [-58.5019928670311, -34.639587037769445],
     [-58.50241771095428, -34.63925471473922],
     [-58.50333773894523, -34.63853236430435],
     [-58.502817360764354, -34.63845331067199]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_10',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 741.0,
   'VIVIEND': 326.0,
   'HOGARES': 269.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.05862292355442,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49035364575156, -34.643021734198136],
     [-58.49004637888966, -34.643006240006095],
     [-58.489985048315084, -34.64306583159024],
     [-58.49027787124787, -34.643206118734184],
     [-58.49103507371029, -34.64356904604995],
     [-58.49173066603771, -34.64390233524976],
     [-58.493063999670774, -34.64454123987856],
     [-58.49423960017402, -34.6451046069153],
     [-58.49436282594521, -34.64513415262711],
     [-58.494480862874155, -34.64518707998967],
     [-58.49470100327774, -34.645294276588935],
     [-58.494797261406745, -34.645216222651804],
     [-58.495818620279664, -34.644417212282804],
     [-58.4960757032128, -34.644216155036375],
     [-58.496536370892564, -34.64385581457885],
     [-58.49615811797593, -34.643834158242306],
     [-58.494773300678105, -34.6436242473027],
     [-58.493289386895356, -34.643399275007226],
     [-58.49200234306824, -34.64325959015733],
     [-58.491820413156404, -34.64323301384741],
     [-58.49035364575156, -34.643021734198136]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_2',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 844.0,
   'VIVIEND': 456.0,
   'HOGARES': 372.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.052706449908122,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50144735872506, -34.63824840004559],
     [-58.50031961659934, -34.63808769562737],
     [-58.4990800851644, -34.63791102814173],
     [-58.49885718016793, -34.637880389981916],
     [-58.4986235029269, -34.639147651169154],
     [-58.49838852895267, -34.640387940010584],
     [-58.499841886967076, -34.64058574683423],
     [-58.50007990182365, -34.63933341197041],
     [-58.50121813602502, -34.63948432645278],
     [-58.50144735872506, -34.63824840004559]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_3',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 944.0,
   'VIVIEND': 436.0,
   'HOGARES': 360.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.074097518117756,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49885718016793, -34.637880389981916],
     [-58.497406171515124, -34.63768102134371],
     [-58.497201818838775, -34.63882897488852],
     [-58.49718832650053, -34.638962148660646],
     [-58.4971735612977, -34.63910799893373],
     [-58.49694165379565, -34.64019095911475],
     [-58.496679804572004, -34.641413787097264],
     [-58.49815618330189, -34.641613861091386],
     [-58.49921826689106, -34.64175777398861],
     [-58.49968921383966, -34.64138939018307],
     [-58.499841886967076, -34.64058574683423],
     [-58.49838852895267, -34.640387940010584],
     [-58.4986235029269, -34.639147651169154],
     [-58.49885718016793, -34.637880389981916]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_4',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1083.0,
   'VIVIEND': 445.0,
   'HOGARES': 378.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.019005590040763,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49718832650053, -34.638962148660646],
     [-58.4957103802964, -34.63876734499897],
     [-58.49568784634875, -34.638881365988944],
     [-58.49546419510403, -34.639989814306865],
     [-58.49694165379565, -34.64019095911475],
     [-58.4971735612977, -34.63910799893373],
     [-58.49718832650053, -34.638962148660646]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_5',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1061.0,
   'VIVIEND': 368.0,
   'HOGARES': 367.0,
   'HOGARES_': 29.0,
   'AREA_KM': 0.094748994764371,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4957103802964, -34.63876734499897],
     [-58.494241473404614, -34.63857463377233],
     [-58.4936120406035, -34.638490076018606],
     [-58.493017800429875, -34.63841156265285],
     [-58.49277981423834, -34.63837810021424],
     [-58.492538185076775, -34.63959168928099],
     [-58.49246532590369, -34.640043682051264],
     [-58.492089052024625, -34.640507790574596],
     [-58.49192432423974, -34.64068008485378],
     [-58.49183130153961, -34.64074398078256],
     [-58.49189077833826, -34.640752276476526],
     [-58.492290923928344, -34.64080147615196],
     [-58.49376191451226, -34.64100484413496],
     [-58.49522021950274, -34.641215944280596],
     [-58.496679804572004, -34.641413787097264],
     [-58.49694165379565, -34.64019095911475],
     [-58.49546419510403, -34.639989814306865],
     [-58.49568784634875, -34.638881365988944],
     [-58.4957103802964, -34.63876734499897]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_6',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 872.0,
   'VIVIEND': 372.0,
   'HOGARES': 308.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.085482618981212,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.490834683552535, -34.64060519974019],
     [-58.49183130153961, -34.64074398078256],
     [-58.49192432423974, -34.64068008485378],
     [-58.492089052024625, -34.640507790574596],
     [-58.49246532590369, -34.640043682051264],
     [-58.492538185076775, -34.63959168928099],
     [-58.49277981423834, -34.63837810021424],
     [-58.4916698134896, -34.63822921292879],
     [-58.49122261425326, -34.63857840534605],
     [-58.490310486566344, -34.63929066255579],
     [-58.489786270178115, -34.63970007874716],
     [-58.48945831412218, -34.63996008252636],
     [-58.48896577994856, -34.64035068524648],
     [-58.48813718427303, -34.64100776676686],
     [-58.48763015584002, -34.641409353039606],
     [-58.48913088416853, -34.64161622150516],
     [-58.49043103277324, -34.64179515933759],
     [-58.49061389569816, -34.64181969524685],
     [-58.490834683552535, -34.64060519974019]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_7',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 875.0,
   'VIVIEND': 345.0,
   'HOGARES': 289.0,
   'HOGARES_': 21.0,
   'AREA_KM': 0.103615484010398,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49004637888966, -34.643006240006095],
     [-58.49035364575156, -34.643021734198136],
     [-58.491820413156404, -34.64323301384741],
     [-58.49200234306824, -34.64325959015733],
     [-58.493289386895356, -34.643399275007226],
     [-58.49352480354089, -34.642206179876624],
     [-58.4936719356084, -34.64146071514366],
     [-58.49376191451226, -34.64100484413496],
     [-58.492290923928344, -34.64080147615196],
     [-58.49189077833826, -34.640752276476526],
     [-58.49183130153961, -34.64074398078256],
     [-58.490834683552535, -34.64060519974019],
     [-58.49061389569816, -34.64181969524685],
     [-58.49043103277324, -34.64179515933759],
     [-58.48913088416853, -34.64161622150516],
     [-58.48763015584002, -34.641409353039606],
     [-58.48720473205495, -34.641746342916164],
     [-58.48744360124118, -34.6418590419111],
     [-58.48811061504736, -34.64217489275172],
     [-58.4889430471732, -34.64256901481061],
     [-58.48902255815216, -34.64260667397561],
     [-58.489392587665755, -34.642781876370854],
     [-58.48957530237011, -34.64286944244082],
     [-58.489985048315084, -34.64306583159024],
     [-58.49004637888966, -34.643006240006095]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_8',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 694.0,
   'VIVIEND': 286.0,
   'HOGARES': 246.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.054803235032558,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.494773300678105, -34.6436242473027],
     [-58.49615811797593, -34.643834158242306],
     [-58.4964215171501, -34.6426137258166],
     [-58.4951646316771, -34.642442868591836],
     [-58.49500102329667, -34.64241903864104],
     [-58.49502797889863, -34.642276565782176],
     [-58.495136810943826, -34.64167603997985],
     [-58.49522021950274, -34.641215944280596],
     [-58.49376191451226, -34.64100484413496],
     [-58.4936719356084, -34.64146071514366],
     [-58.49352480354089, -34.642206179876624],
     [-58.493289386895356, -34.643399275007226],
     [-58.494773300678105, -34.6436242473027]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_17_9',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 638.0,
   'VIVIEND': 258.0,
   'HOGARES': 239.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.054562329091653,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49921826689106, -34.64175777398861],
     [-58.49815618330189, -34.641613861091386],
     [-58.496679804572004, -34.641413787097264],
     [-58.49522021950274, -34.641215944280596],
     [-58.495136810943826, -34.64167603997985],
     [-58.49502797889863, -34.642276565782176],
     [-58.49500102329667, -34.64241903864104],
     [-58.4951646316771, -34.642442868591836],
     [-58.4964215171501, -34.6426137258166],
     [-58.49615811797593, -34.643834158242306],
     [-58.496536370892564, -34.64385581457885],
     [-58.497872012003015, -34.64281092301687],
     [-58.49793930426725, -34.642758297618755],
     [-58.498887519772175, -34.642016465828696],
     [-58.49921826689106, -34.64175777398861]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_1',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 736.0,
   'VIVIEND': 311.0,
   'HOGARES': 280.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.059840386840492,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4916698134896, -34.63822921292879],
     [-58.49130144746313, -34.638139017531444],
     [-58.491110914595545, -34.63808659689774],
     [-58.49036080328846, -34.63788930311184],
     [-58.490081397733505, -34.637815774077175],
     [-58.48851805643028, -34.63743167561332],
     [-58.488252586480144, -34.63861420487845],
     [-58.48821727799531, -34.63878125571637],
     [-58.4881144995814, -34.639267055264824],
     [-58.48809084261176, -34.639365229896825],
     [-58.48803672080588, -34.639590172306],
     [-58.48800948959726, -34.63970334776407],
     [-58.48792508117241, -34.64008322704231],
     [-58.48896577994856, -34.64035068524648],
     [-58.48945831412218, -34.63996008252636],
     [-58.489786270178115, -34.63970007874716],
     [-58.490310486566344, -34.63929066255579],
     [-58.49122261425326, -34.63857840534605],
     [-58.4916698134896, -34.63822921292879]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_10',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 516.0,
   'VIVIEND': 212.0,
   'HOGARES': 191.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.057686651756644,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479094541094526, -34.63654266599682],
     [-58.47860027559172, -34.63693914285121],
     [-58.47830432739257, -34.637176506781444],
     [-58.47818676545481, -34.63727074781558],
     [-58.4779450767777, -34.637440709097255],
     [-58.47944819204997, -34.63812896767961],
     [-58.479802757043515, -34.63829131401452],
     [-58.48086339267226, -34.63877700922501],
     [-58.48114476526277, -34.63890584115352],
     [-58.482281256918334, -34.63942616061649],
     [-58.48250530450972, -34.639253517588784],
     [-58.48271708288278, -34.63908566492544],
     [-58.482835696348495, -34.63876979808365],
     [-58.481427720977095, -34.63811360924381],
     [-58.48168376446162, -34.63739680385811],
     [-58.4803884778549, -34.63683185356143],
     [-58.480288673444456, -34.6370806022405],
     [-58.479094541094526, -34.63654266599682]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_11',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 663.0,
   'VIVIEND': 247.0,
   'HOGARES': 224.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.039884357718885,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48342235151105, -34.638526599483804],
     [-58.48271708288278, -34.63908566492544],
     [-58.48250530450972, -34.639253517588784],
     [-58.482281256918334, -34.63942616061649],
     [-58.483300083546006, -34.63990339048263],
     [-58.48400558341334, -34.64023679270872],
     [-58.48427921217576, -34.64036604126357],
     [-58.484718758393754, -34.640573710599526],
     [-58.48491569422202, -34.64066677411147],
     [-58.4854648329166, -34.64092575911086],
     [-58.48552833497252, -34.64069997105923],
     [-58.485887161239376, -34.639559332109215],
     [-58.48570259424662, -34.63951190193913],
     [-58.48462118702948, -34.63923843721378],
     [-58.48342235151105, -34.638526599483804]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_12',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 808.0,
   'VIVIEND': 325.0,
   'HOGARES': 297.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.055605765693724,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48636694806244, -34.64135122405131],
     [-58.48720473205495, -34.641746342916164],
     [-58.48763015584002, -34.641409353039606],
     [-58.48813718427303, -34.64100776676686],
     [-58.48896577994856, -34.64035068524648],
     [-58.48792508117241, -34.64008322704231],
     [-58.48800948959726, -34.63970334776407],
     [-58.48803672080588, -34.639590172306],
     [-58.48609819592441, -34.638888653270755],
     [-58.485887161239376, -34.639559332109215],
     [-58.48552833497252, -34.64069997105923],
     [-58.4854648329166, -34.64092575911086],
     [-58.48636694806244, -34.64135122405131]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_2',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 755.0,
   'VIVIEND': 292.0,
   'HOGARES': 270.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.042283751648486,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48851805643028, -34.63743167561332],
     [-58.48757896671583, -34.637197009909976],
     [-58.48667950420408, -34.63697225883181],
     [-58.48633688320952, -34.63809402407953],
     [-58.48628002431704, -34.63829544499141],
     [-58.486238912103765, -34.63844108778373],
     [-58.48609819592441, -34.638888653270755],
     [-58.48803672080588, -34.639590172306],
     [-58.48809084261176, -34.639365229896825],
     [-58.4881144995814, -34.639267055264824],
     [-58.48821727799531, -34.63878125571637],
     [-58.488252586480144, -34.63861420487845],
     [-58.48851805643028, -34.63743167561332]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_3',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 780.0,
   'VIVIEND': 397.0,
   'HOGARES': 337.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.058217473846793,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48568989769152, -34.63672913771733],
     [-58.48528459346642, -34.63705048343973],
     [-58.48433691214934, -34.63780171710866],
     [-58.48342235151105, -34.638526599483804],
     [-58.48462118702948, -34.63923843721378],
     [-58.48570259424662, -34.63951190193913],
     [-58.485887161239376, -34.639559332109215],
     [-58.48609819592441, -34.638888653270755],
     [-58.486238912103765, -34.63844108778373],
     [-58.48628002431704, -34.63829544499141],
     [-58.48633688320952, -34.63809402407953],
     [-58.48667950420408, -34.63697225883181],
     [-58.486713552969775, -34.63686070200771],
     [-58.48673517392608, -34.63678999299685],
     [-58.48704813248381, -34.635662105509134],
     [-58.48568989769152, -34.63672913771733]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_4',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 1114.0,
   'VIVIEND': 466.0,
   'HOGARES': 396.0,
   'HOGARES_': 43.0,
   'AREA_KM': 0.063336689893842,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.483304180890904, -34.63752196432618],
     [-58.482835696348495, -34.63876979808365],
     [-58.48271708288278, -34.63908566492544],
     [-58.48342235151105, -34.638526599483804],
     [-58.48433691214934, -34.63780171710866],
     [-58.48528459346642, -34.63705048343973],
     [-58.48568989769152, -34.63672913771733],
     [-58.48704813248381, -34.635662105509134],
     [-58.48607950238116, -34.63542806788767],
     [-58.48483540687744, -34.63512738221247],
     [-58.48425575228312, -34.63498734410607],
     [-58.48377069310905, -34.63627941058566],
     [-58.483304180890904, -34.63752196432618]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_5',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 779.0,
   'VIVIEND': 352.0,
   'HOGARES': 277.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.041410461965501,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48607950238116, -34.63542806788767],
     [-58.48704813248381, -34.635662105509134],
     [-58.487716285897896, -34.63511964218352],
     [-58.48782437982213, -34.635035464384075],
     [-58.487912711700645, -34.634966572383156],
     [-58.48799525104039, -34.63490169563466],
     [-58.48811365214969, -34.63481272666821],
     [-58.48830897045826, -34.6346647269151],
     [-58.48783123859807, -34.634612220243866],
     [-58.487606639436855, -34.634571139234204],
     [-58.486719828382746, -34.63439371008086],
     [-58.486567311385144, -34.63436014820895],
     [-58.485797230257724, -34.63419078809722],
     [-58.48532297848751, -34.634074256347],
     [-58.48525273019379, -34.634226312810284],
     [-58.48520598295378, -34.63432730815576],
     [-58.48517481806417, -34.6343946383752],
     [-58.48405829140564, -34.63412018895739],
     [-58.483936617637056, -34.634084646542384],
     [-58.483585526404234, -34.634825346782385],
     [-58.48425575228312, -34.63498734410607],
     [-58.48483540687744, -34.63512738221247],
     [-58.48607950238116, -34.63542806788767]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_6',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 606.0,
   'VIVIEND': 362.0,
   'HOGARES': 280.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.013607677262966,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48271948045221, -34.63372556263674],
     [-58.482507251442215, -34.633828786954496],
     [-58.4817796955963, -34.634388949089],
     [-58.48233821111223, -34.63452386149868],
     [-58.482676047867486, -34.63460556783788],
     [-58.483585526404234, -34.634825346782385],
     [-58.483936617637056, -34.634084646542384],
     [-58.48286533059915, -34.63377172729254],
     [-58.48271971446375, -34.63372590584539],
     [-58.48271948045221, -34.63372556263674]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_7',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 785.0,
   'VIVIEND': 428.0,
   'HOGARES': 365.0,
   'HOGARES_': 35.0,
   'AREA_KM': 0.022546550028622,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.483585526404234, -34.634825346782385],
     [-58.482676047867486, -34.63460556783788],
     [-58.48224803224584, -34.63581677330466],
     [-58.48221320783372, -34.6359143148354],
     [-58.48377069310905, -34.63627941058566],
     [-58.48425575228312, -34.63498734410607],
     [-58.483585526404234, -34.634825346782385]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_8',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 596.0,
   'VIVIEND': 243.0,
   'HOGARES': 184.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.039831263319105,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48168376446162, -34.63739680385811],
     [-58.481427720977095, -34.63811360924381],
     [-58.482835696348495, -34.63876979808365],
     [-58.483304180890904, -34.63752196432618],
     [-58.48377069310905, -34.63627941058566],
     [-58.48221320783372, -34.6359143148354],
     [-58.481888289536386, -34.63682416197367],
     [-58.48168376446162, -34.63739680385811]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_18_9',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 1284.0,
   'VIVIEND': 469.0,
   'HOGARES': 458.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.053849970148146,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48233821111223, -34.63452386149868],
     [-58.4817796955963, -34.634388949089],
     [-58.48040608531271, -34.635490714091915],
     [-58.479326593814015, -34.63635657684467],
     [-58.479094541094526, -34.63654266599682],
     [-58.480288673444456, -34.6370806022405],
     [-58.4803884778549, -34.63683185356143],
     [-58.48168376446162, -34.63739680385811],
     [-58.481888289536386, -34.63682416197367],
     [-58.48221320783372, -34.6359143148354],
     [-58.48224803224584, -34.63581677330466],
     [-58.482676047867486, -34.63460556783788],
     [-58.48233821111223, -34.63452386149868]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_1',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 563.0,
   'VIVIEND': 310.0,
   'HOGARES': 265.0,
   'HOGARES_': 46.0,
   'AREA_KM': 0.02305837276262,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48019518782746, -34.63293417505146],
     [-58.48016887408438, -34.6329937567704],
     [-58.479768373013364, -34.633902764426225],
     [-58.48110930892356, -34.63422686774233],
     [-58.4817796955963, -34.634388949089],
     [-58.482507251442215, -34.633828786954496],
     [-58.48271948045221, -34.63372556263674],
     [-58.482461371911455, -34.63364467972243],
     [-58.48151661938886, -34.633347009847554],
     [-58.48141335139857, -34.63331449026282],
     [-58.48019518782746, -34.63293417505146]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_10',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1008.0,
   'VIVIEND': 480.0,
   'HOGARES': 400.0,
   'HOGARES_': 85.0,
   'AREA_KM': 0.056100264299095,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47339504470874, -34.63386039087496],
     [-58.47227404980013, -34.63359773544457],
     [-58.47168001579909, -34.63492229813041],
     [-58.47275222193723, -34.63531052734399],
     [-58.47373667682694, -34.63566692384843],
     [-58.47379938776288, -34.635689664810656],
     [-58.4747991119556, -34.63611013631941],
     [-58.47512651487715, -34.63536375966305],
     [-58.475563184959036, -34.63436842494428],
     [-58.4744449880557, -34.634106423003075],
     [-58.47339504470874, -34.63386039087496]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_11',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 919.0,
   'VIVIEND': 400.0,
   'HOGARES': 344.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.083871573000543,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47373667682694, -34.63566692384843],
     [-58.47275222193723, -34.63531052734399],
     [-58.47168001579909, -34.63492229813041],
     [-58.47115572721548, -34.63609142910578],
     [-58.472238340253504, -34.636476845116476],
     [-58.4732890962572, -34.63685098657218],
     [-58.47414533473971, -34.63715577064928],
     [-58.47431378849719, -34.63721638897684],
     [-58.47532298242915, -34.63757938997059],
     [-58.47628864372403, -34.63792675353217],
     [-58.47569012016304, -34.63920837725023],
     [-58.47617793915669, -34.638822406079775],
     [-58.47699076198858, -34.638179280751196],
     [-58.47775629143702, -34.637573550427334],
     [-58.4779450767777, -34.637440709097255],
     [-58.47675138598096, -34.63693584872522],
     [-58.47579237084087, -34.63653024818211],
     [-58.4747991119556, -34.63611013631941],
     [-58.47379938776288, -34.635689664810656],
     [-58.47373667682694, -34.63566692384843]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_12',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1137.0,
   'VIVIEND': 510.0,
   'HOGARES': 429.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.067169574804902,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.472238340253504, -34.636476845116476],
     [-58.47115572721548, -34.63609142910578],
     [-58.47070272322284, -34.637101608105596],
     [-58.471816696120996, -34.637433926749324],
     [-58.472891994288865, -34.6377547594801],
     [-58.473815080608276, -34.63836334524235],
     [-58.47472275105936, -34.63892086877458],
     [-58.475471937704825, -34.639381077570135],
     [-58.47569012016304, -34.63920837725023],
     [-58.47628864372403, -34.63792675353217],
     [-58.47532298242915, -34.63757938997059],
     [-58.47431378849719, -34.63721638897684],
     [-58.47414533473971, -34.63715577064928],
     [-58.4732890962572, -34.63685098657218],
     [-58.472238340253504, -34.636476845116476]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_2',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1094.0,
   'VIVIEND': 474.0,
   'HOGARES': 436.0,
   'HOGARES_': 98.0,
   'AREA_KM': 0.042610865258873,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47774228219118, -34.632182665103365],
     [-58.476688250514755, -34.63185694277863],
     [-58.47614837525931, -34.633027717315606],
     [-58.47724398593101, -34.633292593730395],
     [-58.478330146061474, -34.63355513754023],
     [-58.479768373013364, -34.633902764426225],
     [-58.48016887408438, -34.6329937567704],
     [-58.47878065611789, -34.63256225404585],
     [-58.4788057796099, -34.632511264398765],
     [-58.47774228219118, -34.632182665103365]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_3',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 1100.0,
   'VIVIEND': 364.0,
   'HOGARES': 355.0,
   'HOGARES_': 65.0,
   'AREA_KM': 0.066330383141711,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47577807397992, -34.63121020738502],
     [-58.474748515359764, -34.630897000933665],
     [-58.47460844690269, -34.63085433827233],
     [-58.473653445408395, -34.63055696046143],
     [-58.47350337302802, -34.63088486395027],
     [-58.47288356661312, -34.632238379267434],
     [-58.47400420549053, -34.63250933911644],
     [-58.475054560769955, -34.63276325340352],
     [-58.47614837525931, -34.633027717315606],
     [-58.476688250514755, -34.63185694277863],
     [-58.47774228219118, -34.632182665103365],
     [-58.4788057796099, -34.632511264398765],
     [-58.47884495392096, -34.63242534302355],
     [-58.47887535654845, -34.63235871873108],
     [-58.4789498725542, -34.632195256779205],
     [-58.47789438730561, -34.631867643648384],
     [-58.47699474348652, -34.63158838388511],
     [-58.476832690632584, -34.63153790939113],
     [-58.475892924259284, -34.631245124886995],
     [-58.47577807397992, -34.63121020738502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_4',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 788.0,
   'VIVIEND': 416.0,
   'HOGARES': 340.0,
   'HOGARES_': 36.0,
   'AREA_KM': 0.049740152595341,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47614837525931, -34.633027717315606],
     [-58.475054560769955, -34.63276325340352],
     [-58.47400420549053, -34.63250933911644],
     [-58.47288356661312, -34.632238379267434],
     [-58.47227404980013, -34.63359773544457],
     [-58.47339504470874, -34.63386039087496],
     [-58.4744449880557, -34.634106423003075],
     [-58.475563184959036, -34.63436842494428],
     [-58.47614837525931, -34.633027717315606]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_5',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 822.0,
   'VIVIEND': 420.0,
   'HOGARES': 348.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.032413780181766,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.478330146061474, -34.63355513754023],
     [-58.47724398593101, -34.633292593730395],
     [-58.47614837525931, -34.633027717315606],
     [-58.475563184959036, -34.63436842494428],
     [-58.47648644394989, -34.63458466380577],
     [-58.476646285059424, -34.634621617753986],
     [-58.47771652543756, -34.634868816555816],
     [-58.478330146061474, -34.63355513754023]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_6',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 858.0,
   'VIVIEND': 350.0,
   'HOGARES': 347.0,
   'HOGARES_': 33.0,
   'AREA_KM': 0.038129058583111,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479768373013364, -34.633902764426225],
     [-58.478330146061474, -34.63355513754023],
     [-58.47771652543756, -34.634868816555816],
     [-58.47725091037332, -34.63586592293268],
     [-58.47873450050605, -34.63621658464401],
     [-58.479186295090095, -34.635208347685584],
     [-58.479768373013364, -34.633902764426225]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_7',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 775.0,
   'VIVIEND': 419.0,
   'HOGARES': 328.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.023599119450212,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48110930892356, -34.63422686774233],
     [-58.479768373013364, -34.633902764426225],
     [-58.479186295090095, -34.635208347685584],
     [-58.480206279652634, -34.63544391158904],
     [-58.48040608531271, -34.635490714091915],
     [-58.4817796955963, -34.634388949089],
     [-58.48110930892356, -34.63422686774233]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_8',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 512.0,
   'VIVIEND': 260.0,
   'HOGARES': 215.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.033091628721446,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47873450050605, -34.63621658464401],
     [-58.47725091037332, -34.63586592293268],
     [-58.47675138598096, -34.63693584872522],
     [-58.4779450767777, -34.637440709097255],
     [-58.47818676545481, -34.63727074781558],
     [-58.47830432739257, -34.637176506781444],
     [-58.47860027559172, -34.63693914285121],
     [-58.479094541094526, -34.63654266599682],
     [-58.479326593814015, -34.63635657684467],
     [-58.48040608531271, -34.635490714091915],
     [-58.480206279652634, -34.63544391158904],
     [-58.479186295090095, -34.635208347685584],
     [-58.47873450050605, -34.63621658464401]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_19_9',
   'BARRIO': 'FLORESTA',
   'COMUNA': '10',
   'POBLACI': 729.0,
   'VIVIEND': 327.0,
   'HOGARES': 276.0,
   'HOGARES_': 25.0,
   'AREA_KM': 0.045576452933133,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47512651487715, -34.63536375966305],
     [-58.4747991119556, -34.63611013631941],
     [-58.47579237084087, -34.63653024818211],
     [-58.47675138598096, -34.63693584872522],
     [-58.47725091037332, -34.63586592293268],
     [-58.47771652543756, -34.634868816555816],
     [-58.476646285059424, -34.634621617753986],
     [-58.47648644394989, -34.63458466380577],
     [-58.475563184959036, -34.63436842494428],
     [-58.47512651487715, -34.63536375966305]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_1',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 930.0,
   'VIVIEND': 402.0,
   'HOGARES': 353.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.116574383322716,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52812332582656, -34.61513208318062],
     [-58.52676372753001, -34.61618739351508],
     [-58.527247846597156, -34.61656305781437],
     [-58.52770188263667, -34.61691535567158],
     [-58.52817757198295, -34.6172844713583],
     [-58.528683950019044, -34.61767730121125],
     [-58.52909861942052, -34.61799912181157],
     [-58.5295195994153, -34.61832572630863],
     [-58.52976927791781, -34.61832755258832],
     [-58.529741537511846, -34.61858125519184],
     [-58.53059664640218, -34.6194704998002],
     [-58.53064589379705, -34.61864165673528],
     [-58.530916356732966, -34.61594091420059],
     [-58.52988643283426, -34.6137474625311],
     [-58.52961878771185, -34.61396139801502],
     [-58.529090031597576, -34.614384041117994],
     [-58.529089265912674, -34.61438239827168],
     [-58.52891475612757, -34.61451784670432],
     [-58.528518659348705, -34.614825247490245],
     [-58.52812332582656, -34.61513208318062]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_2',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 600.0,
   'VIVIEND': 291.0,
   'HOGARES': 257.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.045938961147755,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.527247846597156, -34.61656305781437],
     [-58.52676372753001, -34.61618739351508],
     [-58.52579842670474, -34.61693656651871],
     [-58.526239284897905, -34.61732753899228],
     [-58.52666241720563, -34.61770281475148],
     [-58.52700048259377, -34.618002710568966],
     [-58.52710567080059, -34.61809659971458],
     [-58.527457891067534, -34.61841099396076],
     [-58.52756282338488, -34.618503122259625],
     [-58.52797437176601, -34.61886452616614],
     [-58.52808049862683, -34.61895770972178],
     [-58.52836623370847, -34.61921009402801],
     [-58.5295195994153, -34.61832572630863],
     [-58.52909861942052, -34.61799912181157],
     [-58.528683950019044, -34.61767730121125],
     [-58.52817757198295, -34.6172844713583],
     [-58.52770188263667, -34.61691535567158],
     [-58.527247846597156, -34.61656305781437]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_3',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 702.0,
   'VIVIEND': 279.0,
   'HOGARES': 245.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.050063113272011,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52836623370847, -34.61921009402801],
     [-58.52808049862683, -34.61895770972178],
     [-58.52797437176601, -34.61886452616614],
     [-58.52756282338488, -34.618503122259625],
     [-58.527457891067534, -34.61841099396076],
     [-58.52710567080059, -34.61809659971458],
     [-58.52700048259377, -34.618002710568966],
     [-58.52666241720563, -34.61770281475148],
     [-58.526239284897905, -34.61732753899228],
     [-58.52579842670474, -34.61693656651871],
     [-58.524641898741464, -34.61783414045094],
     [-58.52474341991306, -34.61792627291789],
     [-58.52507005540465, -34.618213644549115],
     [-58.52539200499175, -34.618496933150006],
     [-58.525495912352675, -34.61858828909759],
     [-58.5259406960115, -34.618978837979256],
     [-58.52638480381592, -34.61937128699224],
     [-58.52670190828182, -34.619656476033846],
     [-58.52681127694668, -34.61975641961233],
     [-58.52690155109594, -34.6198389786006],
     [-58.527196583222555, -34.62010741721561],
     [-58.5273282857576, -34.62000586762242],
     [-58.52836623370847, -34.61921009402801]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_4',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 875.0,
   'VIVIEND': 338.0,
   'HOGARES': 303.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.082826132268578,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5284033254984, -34.621202347469975],
     [-58.52906936521941, -34.62180565478412],
     [-58.52952475688521, -34.62220977627911],
     [-58.529525754991255, -34.62219330064547],
     [-58.53039242238857, -34.62281324895976],
     [-58.53040646939701, -34.622555420169775],
     [-58.5305093242734, -34.62092091053623],
     [-58.53055034870887, -34.62024968389247],
     [-58.53059664640218, -34.6194704998002],
     [-58.529741537511846, -34.61858125519184],
     [-58.52976927791781, -34.61832755258832],
     [-58.5295195994153, -34.61832572630863],
     [-58.52836623370847, -34.61921009402801],
     [-58.5273282857576, -34.62000586762242],
     [-58.527196583222555, -34.62010741721561],
     [-58.5274387650287, -34.620327784092],
     [-58.52793336198192, -34.62077773634759],
     [-58.528059270237364, -34.62089119120154],
     [-58.528163696777405, -34.62098529106505],
     [-58.5284033254984, -34.621202347469975]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_5',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 839.0,
   'VIVIEND': 350.0,
   'HOGARES': 297.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.116057411847413,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.528081343791285, -34.624380297328464],
     [-58.52894825547842, -34.62516124525224],
     [-58.52934501635731, -34.6255185676006],
     [-58.529345895419134, -34.62549525921307],
     [-58.53019960892494, -34.62626222742337],
     [-58.530224048220724, -34.62587801700656],
     [-58.53031027640385, -34.62432098314352],
     [-58.53039242238857, -34.62281324895976],
     [-58.529525754991255, -34.62219330064547],
     [-58.52952475688521, -34.62220977627911],
     [-58.52906936521941, -34.62180565478412],
     [-58.5284033254984, -34.621202347469975],
     [-58.528163696777405, -34.62098529106505],
     [-58.528059270237364, -34.62089119120154],
     [-58.52692330952277, -34.621766028473175],
     [-58.525984163743196, -34.62248934320166],
     [-58.52699561703949, -34.62340206243206],
     [-58.527122977336866, -34.623516996323595],
     [-58.528081343791285, -34.624380297328464]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_6',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 1108.0,
   'VIVIEND': 458.0,
   'HOGARES': 393.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.13667148946505,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52522182924173, -34.62022844650361],
     [-58.52426836034676, -34.62093224830941],
     [-58.52372082579961, -34.621336471073526],
     [-58.52330295568162, -34.62164492184661],
     [-58.52317507384069, -34.62173928200787],
     [-58.52216324785781, -34.62248633597466],
     [-58.52258916782998, -34.62269929867782],
     [-58.52275287272698, -34.62278168377688],
     [-58.52334224702683, -34.62307815560829],
     [-58.5244771199663, -34.62364942256048],
     [-58.525563879095905, -34.624224084010145],
     [-58.525779662591916, -34.624335522951384],
     [-58.52630352797654, -34.6246060280891],
     [-58.52589982152634, -34.624243271661285],
     [-58.52699561703949, -34.62340206243206],
     [-58.525984163743196, -34.62248934320166],
     [-58.52692330952277, -34.621766028473175],
     [-58.528059270237364, -34.62089119120154],
     [-58.52793336198192, -34.62077773634759],
     [-58.5274387650287, -34.620327784092],
     [-58.527196583222555, -34.62010741721561],
     [-58.52690155109594, -34.6198389786006],
     [-58.52681127694668, -34.61975641961233],
     [-58.52670190828182, -34.619656476033846],
     [-58.52638480381592, -34.61937128699224],
     [-58.52535268623064, -34.62013182910408],
     [-58.52522182924173, -34.62022844650361]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_7',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 973.0,
   'VIVIEND': 395.0,
   'HOGARES': 340.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.109079737903625,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52523995896618, -34.62475101597597],
     [-58.52468168729842, -34.62517834711821],
     [-58.52524211181112, -34.62546306367567],
     [-58.52574509941366, -34.62571851130148],
     [-58.52624186879196, -34.62597086146045],
     [-58.52725425125284, -34.626485052828585],
     [-58.52775852960684, -34.62674119565023],
     [-58.52826238493161, -34.626997125332345],
     [-58.52877391372605, -34.62725692203774],
     [-58.529207808021155, -34.627482603710405],
     [-58.52920806131119, -34.62747873650919],
     [-58.530074002393896, -34.627881053366295],
     [-58.53013387044977, -34.627295685171894],
     [-58.53019960892494, -34.62626222742337],
     [-58.529345895419134, -34.62549525921307],
     [-58.52934501635731, -34.6255185676006],
     [-58.52894825547842, -34.62516124525224],
     [-58.528081343791285, -34.624380297328464],
     [-58.527122977336866, -34.623516996323595],
     [-58.52699561703949, -34.62340206243206],
     [-58.52589982152634, -34.624243271661285],
     [-58.52630352797654, -34.6246060280891],
     [-58.525779662591916, -34.624335522951384],
     [-58.52523995896618, -34.62475101597597]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_2_8',
   'BARRIO': 'VILLA REAL',
   'COMUNA': '10',
   'POBLACI': 868.0,
   'VIVIEND': 362.0,
   'HOGARES': 316.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.069076221933253,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.521028795594866, -34.62332330017518],
     [-58.520246992936606, -34.62389776145187],
     [-58.52009270820103, -34.62401044083501],
     [-58.52057458070491, -34.62444099184894],
     [-58.52103463592621, -34.62485204413864],
     [-58.522229960611796, -34.62393321863637],
     [-58.52243218754233, -34.62403586722299],
     [-58.522725515516775, -34.62418480913948],
     [-58.52301432787381, -34.62433149903704],
     [-58.523360409739006, -34.624507244558444],
     [-58.52350409251306, -34.62458020187015],
     [-58.52356783797258, -34.62461256474563],
     [-58.52468168729842, -34.62517834711821],
     [-58.52523995896618, -34.62475101597597],
     [-58.525779662591916, -34.624335522951384],
     [-58.525563879095905, -34.624224084010145],
     [-58.5244771199663, -34.62364942256048],
     [-58.52334224702683, -34.62307815560829],
     [-58.52275287272698, -34.62278168377688],
     [-58.52258916782998, -34.62269929867782],
     [-58.52216324785781, -34.62248633597466],
     [-58.521173200557655, -34.62321717369115],
     [-58.521028795594866, -34.62332330017518]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_1',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 612.0,
   'VIVIEND': 278.0,
   'HOGARES': 222.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.04721520268175,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52468168729842, -34.62517834711821],
     [-58.52356783797258, -34.62461256474563],
     [-58.52312972455076, -34.626046035162354],
     [-58.522762224547584, -34.62724834012039],
     [-58.52397060861155, -34.62750182587263],
     [-58.52457778487608, -34.62762821062449],
     [-58.524945943668584, -34.62642829433692],
     [-58.52524211181112, -34.62546306367567],
     [-58.52468168729842, -34.62517834711821]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_2',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 836.0,
   'VIVIEND': 340.0,
   'HOGARES': 290.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.083701617827505,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52877391372605, -34.62725692203774],
     [-58.52826238493161, -34.626997125332345],
     [-58.52775852960684, -34.62674119565023],
     [-58.52725425125284, -34.626485052828585],
     [-58.52624186879196, -34.62597086146045],
     [-58.52574509941366, -34.62571851130148],
     [-58.52524211181112, -34.62546306367567],
     [-58.524945943668584, -34.62642829433692],
     [-58.52457778487608, -34.62762821062449],
     [-58.52512548826151, -34.6277411015567],
     [-58.525671405512135, -34.627855892373844],
     [-58.52621809057085, -34.62797011695962],
     [-58.52676520314418, -34.6280844092908],
     [-58.52731146517235, -34.62819855876917],
     [-58.527852616209024, -34.62831158175793],
     [-58.52788779511443, -34.628195012656974],
     [-58.52793878335634, -34.62803181496549],
     [-58.528505153849565, -34.62814799061282],
     [-58.52846190368625, -34.62829146588524],
     [-58.528419500589564, -34.62842895471549],
     [-58.52914478868181, -34.628580323649516],
     [-58.52914384710506, -34.62859490164708],
     [-58.53005793419819, -34.62876298154205],
     [-58.53003793491998, -34.62823370410279],
     [-58.530074002393896, -34.627881053366295],
     [-58.52920806131119, -34.62747873650919],
     [-58.529207808021155, -34.627482603710405],
     [-58.52877391372605, -34.62725692203774]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_3',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 803.0,
   'VIVIEND': 345.0,
   'HOGARES': 293.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.077898305167735,
   'partidas': 22.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52676520314418, -34.6280844092908],
     [-58.52621809057085, -34.62797011695962],
     [-58.525671405512135, -34.627855892373844],
     [-58.52512548826151, -34.6277411015567],
     [-58.52457778487608, -34.62762821062449],
     [-58.524152406139535, -34.62901432305813],
     [-58.52415233219829, -34.62901449407453],
     [-58.524699534581885, -34.62912957025842],
     [-58.52524665322573, -34.62924457360422],
     [-58.52579249524567, -34.629359293460695],
     [-58.52633961689836, -34.62947429189634],
     [-58.52688486550276, -34.62958893674476],
     [-58.527430967661005, -34.62970371954606],
     [-58.52798967741031, -34.62981497199499],
     [-58.52852479462841, -34.62993257269745],
     [-58.529094547694186, -34.62935817454739],
     [-58.5290950663272, -34.629350144939],
     [-58.53006152011336, -34.62942672266841],
     [-58.53007040666602, -34.62909305974111],
     [-58.53005793419819, -34.62876298154205],
     [-58.52914384710506, -34.62859490164708],
     [-58.52914478868181, -34.628580323649516],
     [-58.528419500589564, -34.62842895471549],
     [-58.52846190368625, -34.62829146588524],
     [-58.528505153849565, -34.62814799061282],
     [-58.52793878335634, -34.62803181496549],
     [-58.52788779511443, -34.628195012656974],
     [-58.527852616209024, -34.62831158175793],
     [-58.52731146517235, -34.62819855876917],
     [-58.52676520314418, -34.6280844092908]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_4',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 588.0,
   'VIVIEND': 246.0,
   'HOGARES': 218.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.060004279566437,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52524665322573, -34.62924457360422],
     [-58.524699534581885, -34.62912957025842],
     [-58.52415233219829, -34.62901449407453],
     [-58.524128620032705, -34.62909183062392],
     [-58.52376800204331, -34.630267021639],
     [-58.523725078976, -34.63040443863472],
     [-58.524275101045845, -34.63051909274208],
     [-58.52482188671393, -34.63063311220647],
     [-58.525367310475694, -34.630746777800844],
     [-58.52591512163679, -34.63086100310086],
     [-58.52645952639755, -34.63097515729509],
     [-58.52700972968479, -34.631094094770916],
     [-58.52713132490656, -34.63112015757355],
     [-58.527333869236365, -34.63116237470154],
     [-58.52820599719101, -34.63026098650425],
     [-58.52840553264707, -34.63005475069907],
     [-58.52852479462841, -34.62993257269745],
     [-58.52798967741031, -34.62981497199499],
     [-58.527430967661005, -34.62970371954606],
     [-58.52688486550276, -34.62958893674476],
     [-58.52633961689836, -34.62947429189634],
     [-58.52579249524567, -34.629359293460695],
     [-58.52524665322573, -34.62924457360422]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_5',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 806.0,
   'VIVIEND': 322.0,
   'HOGARES': 283.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.111932619808376,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.527333869236365, -34.63116237470154],
     [-58.52683186572665, -34.63168123545966],
     [-58.526709194400084, -34.631807991064704],
     [-58.52679466076436, -34.631825904074134],
     [-58.526612651060404, -34.63256586467228],
     [-58.526509908705194, -34.633464024140636],
     [-58.52783073568174, -34.63356241124905],
     [-58.528839633191836, -34.63363630552178],
     [-58.528838813913566, -34.63364939517379],
     [-58.52979975899261, -34.6336643232409],
     [-58.52982991181244, -34.63322843738119],
     [-58.52987436960551, -34.63268038042092],
     [-58.52992123269176, -34.63226316818636],
     [-58.5299836009622, -34.631740171852364],
     [-58.530027555745534, -34.63120443902454],
     [-58.530054041019035, -34.630663997433174],
     [-58.53005033241102, -34.63018638988898],
     [-58.53005759046663, -34.62957426807697],
     [-58.53006152011336, -34.62942672266841],
     [-58.5290950663272, -34.629350144939],
     [-58.529094547694186, -34.62935817454739],
     [-58.52852479462841, -34.62993257269745],
     [-58.52840553264707, -34.63005475069907],
     [-58.52820599719101, -34.63026098650425],
     [-58.527333869236365, -34.63116237470154]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_6',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 717.0,
   'VIVIEND': 328.0,
   'HOGARES': 278.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.057566156025767,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52783073568174, -34.63356241124905],
     [-58.526509908705194, -34.633464024140636],
     [-58.52639615711015, -34.634452330675956],
     [-58.52632353844043, -34.635084486057934],
     [-58.526318375739756, -34.63512970035956],
     [-58.526474684778904, -34.63519701360044],
     [-58.527604259015085, -34.63528909447379],
     [-58.527694356726194, -34.63529648750614],
     [-58.5279620201129, -34.63530226391024],
     [-58.52815086000231, -34.63530815270138],
     [-58.5287339999633, -34.63527323174842],
     [-58.529367991487504, -34.63525311163181],
     [-58.52965471425025, -34.63524463883852],
     [-58.529767545914304, -34.635241304424184],
     [-58.52977200318918, -34.635166441845755],
     [-58.529752145116724, -34.63441736258729],
     [-58.52978207576376, -34.633919947946566],
     [-58.52979975899261, -34.6336643232409],
     [-58.528838813913566, -34.63364939517379],
     [-58.528839633191836, -34.63363630552178],
     [-58.52783073568174, -34.63356241124905]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_7',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 910.0,
   'VIVIEND': 428.0,
   'HOGARES': 342.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.081867981384754,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52520041686683, -34.633366461994164],
     [-58.52488448791287, -34.63369211897843],
     [-58.52429834102805, -34.634297773212516],
     [-58.523698137862276, -34.63491744579561],
     [-58.525002553387296, -34.63503249154762],
     [-58.526318375739756, -34.63512970035956],
     [-58.52632353844043, -34.635084486057934],
     [-58.52639615711015, -34.634452330675956],
     [-58.526509908705194, -34.633464024140636],
     [-58.526612651060404, -34.63256586467228],
     [-58.52679466076436, -34.631825904074134],
     [-58.526709194400084, -34.631807991064704],
     [-58.52683186572665, -34.63168123545966],
     [-58.527333869236365, -34.63116237470154],
     [-58.52713132490656, -34.63112015757355],
     [-58.52700972968479, -34.631094094770916],
     [-58.52645952639755, -34.63097515729509],
     [-58.52591512163679, -34.63086100310086],
     [-58.525367310475694, -34.630746777800844],
     [-58.52482188671393, -34.63063311220647],
     [-58.52437500823544, -34.6320938438828],
     [-58.52458147403119, -34.632137965014856],
     [-58.525472609153795, -34.632325680164186],
     [-58.52543752204922, -34.63245781194947],
     [-58.52520041686683, -34.633366461994164]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_3_8',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 1006.0,
   'VIVIEND': 434.0,
   'HOGARES': 344.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.113872530158333,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52168410565693, -34.633012506154266],
     [-58.520989311967114, -34.63337488529031],
     [-58.52014601460804, -34.63366662584309],
     [-58.520212283777504, -34.633848453471],
     [-58.52018625700837, -34.63393289280227],
     [-58.52018621708828, -34.633932975430724],
     [-58.52016694411137, -34.63399493584349],
     [-58.52013086621514, -34.63411783764371],
     [-58.52010481167025, -34.63420918321006],
     [-58.52008476246049, -34.63426897444089],
     [-58.52041424490607, -34.63426881897526],
     [-58.52048054435421, -34.63427044818986],
     [-58.521566413251485, -34.63441215140066],
     [-58.52174270995314, -34.63443840441488],
     [-58.522435760746234, -34.634608209094665],
     [-58.52267231724266, -34.63466612161832],
     [-58.523629368985866, -34.63490057863264],
     [-58.523698137862276, -34.63491744579561],
     [-58.52429834102805, -34.634297773212516],
     [-58.52488448791287, -34.63369211897843],
     [-58.52520041686683, -34.633366461994164],
     [-58.52543752204922, -34.63245781194947],
     [-58.525472609153795, -34.632325680164186],
     [-58.52458147403119, -34.632137965014856],
     [-58.52437500823544, -34.6320938438828],
     [-58.52482188671393, -34.63063311220647],
     [-58.524275101045845, -34.63051909274208],
     [-58.523725078976, -34.63040443863472],
     [-58.52327102097142, -34.63185833888203],
     [-58.52310733212727, -34.63182341977742],
     [-58.52299758225982, -34.631801149958484],
     [-58.522905415601954, -34.631941900852375],
     [-58.52282668043006, -34.63204194049928],
     [-58.52261359950686, -34.632275286669326],
     [-58.522536892179495, -34.63235271931279],
     [-58.52242953169248, -34.6324554488147],
     [-58.52238959993064, -34.63249166583594],
     [-58.522253877233254, -34.63260701479223],
     [-58.52219240002662, -34.63265690434699],
     [-58.5221175536072, -34.63271651877127],
     [-58.522067910725866, -34.63275513480145],
     [-58.52201945841462, -34.63279072203909],
     [-58.521942308700865, -34.63284653462771],
     [-58.52187358704369, -34.63289325849931],
     [-58.52177369467634, -34.63295675812924],
     [-58.52168410565693, -34.633012506154266]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_1',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 1036.0,
   'VIVIEND': 427.0,
   'HOGARES': 370.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.082793012437582,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52243218754233, -34.62403586722299],
     [-58.522229960611796, -34.62393321863637],
     [-58.52103463592621, -34.62485204413864],
     [-58.5200172397185, -34.625634153358774],
     [-58.51949308036174, -34.62603707825721],
     [-58.518935197497555, -34.62646579131147],
     [-58.51956603208961, -34.62657782380466],
     [-58.52034360332319, -34.626740065917915],
     [-58.52155291055491, -34.62699463156173],
     [-58.522762224547584, -34.62724834012039],
     [-58.52312972455076, -34.626046035162354],
     [-58.52356783797258, -34.62461256474563],
     [-58.52350409251306, -34.62458020187015],
     [-58.523360409739006, -34.624507244558444],
     [-58.52301432787381, -34.62433149903704],
     [-58.522725515516775, -34.62418480913948],
     [-58.52243218754233, -34.62403586722299]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_2',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 1105.0,
   'VIVIEND': 477.0,
   'HOGARES': 402.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.090074338248014,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.523547016370074, -34.62888488298121],
     [-58.523618495449305, -34.62884129077478],
     [-58.52368509936334, -34.628821968172545],
     [-58.52378182288012, -34.628816008531146],
     [-58.523876674452275, -34.62882358338758],
     [-58.52400655527635, -34.62886723026378],
     [-58.52408449614083, -34.6289101253563],
     [-58.524152406139535, -34.62901432305813],
     [-58.52457778487608, -34.62762821062449],
     [-58.52397060861155, -34.62750182587263],
     [-58.522762224547584, -34.62724834012039],
     [-58.52155291055491, -34.62699463156173],
     [-58.52034360332319, -34.626740065917915],
     [-58.51956603208961, -34.62657782380466],
     [-58.518935197497555, -34.62646579131147],
     [-58.518373648321344, -34.62689851758066],
     [-58.51786726992904, -34.62728882155406],
     [-58.51797893669578, -34.62738644792236],
     [-58.51822426906209, -34.627609225789705],
     [-58.51805507800611, -34.62774000806705],
     [-58.51869624398474, -34.62787373067312],
     [-58.51991766009798, -34.62812830691614],
     [-58.52112834774827, -34.62838069293585],
     [-58.522338616644625, -34.628632926282755],
     [-58.523547016370074, -34.62888488298121]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_3',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 879.0,
   'VIVIEND': 341.0,
   'HOGARES': 300.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.109175160630167,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51822426906209, -34.627609225789705],
     [-58.51797893669578, -34.62738644792236],
     [-58.51786726992904, -34.62728882155406],
     [-58.517353819350895, -34.62768454915461],
     [-58.51681115727109, -34.62810282294142],
     [-58.516359772008585, -34.628450701442596],
     [-58.516882904482344, -34.62891146009179],
     [-58.51683403476971, -34.6289602146051],
     [-58.51828355833793, -34.62926266386686],
     [-58.519492127488306, -34.629514785346906],
     [-58.52051631548015, -34.62972846092227],
     [-58.52070096025428, -34.62976795105927],
     [-58.52087359094883, -34.629804911414254],
     [-58.521911250966625, -34.630024343533016],
     [-58.523121293165055, -34.630280231143914],
     [-58.52327952539982, -34.63031367406497],
     [-58.5235804800885, -34.63037429937503],
     [-58.523725078976, -34.63040443863472],
     [-58.52376800204331, -34.630267021639],
     [-58.524128620032705, -34.62909183062392],
     [-58.52415233219829, -34.62901449407453],
     [-58.524152406139535, -34.62901432305813],
     [-58.52408449614083, -34.6289101253563],
     [-58.52400655527635, -34.62886723026378],
     [-58.523876674452275, -34.62882358338758],
     [-58.52378182288012, -34.628816008531146],
     [-58.52368509936334, -34.628821968172545],
     [-58.523618495449305, -34.62884129077478],
     [-58.523547016370074, -34.62888488298121],
     [-58.522338616644625, -34.628632926282755],
     [-58.52112834774827, -34.62838069293585],
     [-58.51991766009798, -34.62812830691614],
     [-58.51869624398474, -34.62787373067312],
     [-58.51805507800611, -34.62774000806705],
     [-58.51822426906209, -34.627609225789705]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_4',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 814.0,
   'VIVIEND': 332.0,
   'HOGARES': 288.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.135270574766278,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.519042778325066, -34.630978879263466],
     [-58.518686331205615, -34.632140461345124],
     [-58.51963890987682, -34.63324397284999],
     [-58.51963890634038, -34.63324398434456],
     [-58.51973858366535, -34.63335746436935],
     [-58.51978683989792, -34.633415562991544],
     [-58.51992648778208, -34.633451112656964],
     [-58.52014601460804, -34.63366662584309],
     [-58.520989311967114, -34.63337488529031],
     [-58.52168410565693, -34.633012506154266],
     [-58.52177369467634, -34.63295675812924],
     [-58.52187358704369, -34.63289325849931],
     [-58.521942308700865, -34.63284653462771],
     [-58.52201945841462, -34.63279072203909],
     [-58.522067910725866, -34.63275513480145],
     [-58.5221175536072, -34.63271651877127],
     [-58.52219240002662, -34.63265690434699],
     [-58.522253877233254, -34.63260701479223],
     [-58.52238959993064, -34.63249166583594],
     [-58.52242953169248, -34.6324554488147],
     [-58.522536892179495, -34.63235271931279],
     [-58.52261359950686, -34.632275286669326],
     [-58.52282668043006, -34.63204194049928],
     [-58.522905415601954, -34.631941900852375],
     [-58.52299758225982, -34.631801149958484],
     [-58.52310733212727, -34.63182341977742],
     [-58.52327102097142, -34.63185833888203],
     [-58.523725078976, -34.63040443863472],
     [-58.5235804800885, -34.63037429937503],
     [-58.52327952539982, -34.63031367406497],
     [-58.523121293165055, -34.630280231143914],
     [-58.521911250966625, -34.630024343533016],
     [-58.52087359094883, -34.629804911414254],
     [-58.52070096025428, -34.62976795105927],
     [-58.52051631548015, -34.62972846092227],
     [-58.519492127488306, -34.629514785346906],
     [-58.51945889019844, -34.62962318202094],
     [-58.519042778325066, -34.630978879263466]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_5',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 789.0,
   'VIVIEND': 334.0,
   'HOGARES': 286.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.069880750887576,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.519492127488306, -34.629514785346906],
     [-58.51828355833793, -34.62926266386686],
     [-58.51683403476971, -34.6289602146051],
     [-58.516882904482344, -34.62891146009179],
     [-58.516359772008585, -34.628450701442596],
     [-58.5157803992884, -34.6288971559974],
     [-58.515312741211524, -34.62925757298175],
     [-58.515046212289825, -34.62946381618119],
     [-58.51563095617211, -34.62981603162013],
     [-58.51579961793898, -34.6299116633482],
     [-58.51660722262298, -34.63036969323592],
     [-58.516746397989735, -34.63044843512338],
     [-58.517690547710316, -34.63098301756515],
     [-58.518686331205615, -34.632140461345124],
     [-58.519042778325066, -34.630978879263466],
     [-58.51945889019844, -34.62962318202094],
     [-58.519492127488306, -34.629514785346906]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_6',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 655.0,
   'VIVIEND': 253.0,
   'HOGARES': 235.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.067385322975636,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51405181984793, -34.63125967649992],
     [-58.51448946400177, -34.63165491724425],
     [-58.514808704972666, -34.631940839946914],
     [-58.5155689250523, -34.63262178589985],
     [-58.516616845690265, -34.63181202484925],
     [-58.51714454518051, -34.63140432231732],
     [-58.51751453628358, -34.63111837960114],
     [-58.517690547710316, -34.63098301756515],
     [-58.516746397989735, -34.63044843512338],
     [-58.51660722262298, -34.63036969323592],
     [-58.51579961793898, -34.6299116633482],
     [-58.51563095617211, -34.62981603162013],
     [-58.515046212289825, -34.62946381618119],
     [-58.51464658666993, -34.62977293332396],
     [-58.51452515716032, -34.62986692943787],
     [-58.51430588435118, -34.63003547453815],
     [-58.51343602263468, -34.63070429579023],
     [-58.51355084422766, -34.63080713615639],
     [-58.51405181984793, -34.63125967649992]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_7',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 775.0,
   'VIVIEND': 352.0,
   'HOGARES': 301.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.057919917119056,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.516616845690265, -34.63181202484925],
     [-58.5155689250523, -34.63262178589985],
     [-58.516460332918655, -34.633432610297],
     [-58.51649096619345, -34.63346047391849],
     [-58.51757008628404, -34.63345055652949],
     [-58.51777822538848, -34.63344863171506],
     [-58.51820140461064, -34.633444707457436],
     [-58.51828626194775, -34.63344389415955],
     [-58.518480524716, -34.633458523895904],
     [-58.51865202853517, -34.63345682560885],
     [-58.51882327234009, -34.633448577852995],
     [-58.519144629488814, -34.633430471669655],
     [-58.519294227191374, -34.63341406418979],
     [-58.5194656599927, -34.63339300864928],
     [-58.51957153416949, -34.633359214145635],
     [-58.51963559623994, -34.63325008106725],
     [-58.51963890634038, -34.63324398434456],
     [-58.51963890987682, -34.63324397284999],
     [-58.518686331205615, -34.632140461345124],
     [-58.517690547710316, -34.63098301756515],
     [-58.51751453628358, -34.63111837960114],
     [-58.51714454518051, -34.63140432231732],
     [-58.516616845690265, -34.63181202484925]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_8',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 717.0,
   'VIVIEND': 324.0,
   'HOGARES': 264.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.081222005938828,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51282401986819, -34.63346943044243],
     [-58.51331127989922, -34.63390451433392],
     [-58.51347176076787, -34.63384817958934],
     [-58.51430999772245, -34.63365106566555],
     [-58.51476748640728, -34.63360411029192],
     [-58.51533086979273, -34.63354626239711],
     [-58.516218892939406, -34.63354045339024],
     [-58.516231354862605, -34.633541813860894],
     [-58.516460332918655, -34.633432610297],
     [-58.5155689250523, -34.63262178589985],
     [-58.514808704972666, -34.631940839946914],
     [-58.51448946400177, -34.63165491724425],
     [-58.51405181984793, -34.63125967649992],
     [-58.51355084422766, -34.63080713615639],
     [-58.51343602263468, -34.63070429579023],
     [-58.51242154957688, -34.631484367906864],
     [-58.51230616088894, -34.63157307759119],
     [-58.51144316497467, -34.632236599950254],
     [-58.51206449774894, -34.63279135453372],
     [-58.51282401986819, -34.63346943044243]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_4_9',
   'BARRIO': 'VERSALLES',
   'COMUNA': '10',
   'POBLACI': 774.0,
   'VIVIEND': 355.0,
   'HOGARES': 305.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.076365747316599,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50950311969457, -34.63372807597084],
     [-58.50860277749226, -34.63442025453585],
     [-58.508485166795374, -34.634511355786856],
     [-58.50807987214802, -34.63482545334483],
     [-58.5077867328, -34.6350460567126],
     [-58.5081619804297, -34.6350926783391],
     [-58.50862131726924, -34.63513201360231],
     [-58.50880356958439, -34.63514764919117],
     [-58.508996217592404, -34.63516539325417],
     [-58.51006903243795, -34.63526413699491],
     [-58.510725761619696, -34.63497444133458],
     [-58.510844926946405, -34.6349228446623],
     [-58.511262898862576, -34.63474197334146],
     [-58.51193120301912, -34.63444564679015],
     [-58.51202123657259, -34.63440758195169],
     [-58.512721144512426, -34.634111590389274],
     [-58.51331127989922, -34.63390451433392],
     [-58.51282401986819, -34.63346943044243],
     [-58.51206449774894, -34.63279135453372],
     [-58.51144316497467, -34.632236599950254],
     [-58.51044125833533, -34.633006861582295],
     [-58.50950311969457, -34.63372807597084]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_1',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 700.0,
   'VIVIEND': 263.0,
   'HOGARES': 243.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.0776136865412,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51779277947891, -34.62195514350502],
     [-58.51768989821788, -34.62186321719617],
     [-58.51730565060099, -34.62151916107546],
     [-58.516306143072235, -34.62229151335699],
     [-58.51619255953756, -34.62237924012605],
     [-58.515860830694535, -34.62263192280121],
     [-58.51595825613379, -34.622719557207574],
     [-58.51674217817303, -34.623414712056906],
     [-58.516845314729146, -34.623504878447655],
     [-58.516959958430164, -34.62360496930353],
     [-58.517863825605836, -34.624401472823074],
     [-58.518182524745875, -34.62415372032506],
     [-58.51830572998357, -34.62405852248389],
     [-58.518713157531906, -34.624391508219006],
     [-58.519098377209225, -34.62475908062954],
     [-58.519552563971814, -34.62519239492976],
     [-58.5200172397185, -34.625634153358774],
     [-58.52103463592621, -34.62485204413864],
     [-58.52057458070491, -34.62444099184894],
     [-58.52009270820103, -34.62401044083501],
     [-58.519686619571736, -34.623647529202124],
     [-58.51929408768318, -34.623296793119714],
     [-58.51877949652449, -34.62283688552589],
     [-58.51828707304026, -34.622396895394616],
     [-58.51779277947891, -34.62195514350502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_10',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 805.0,
   'VIVIEND': 327.0,
   'HOGARES': 296.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.052317560906209,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51308661950284, -34.62476086695865],
     [-58.51298211795712, -34.62466330353477],
     [-58.51215037275663, -34.62388096012718],
     [-58.511608134848565, -34.62429857704905],
     [-58.51151353216695, -34.62437143252942],
     [-58.51104988126937, -34.62472556416814],
     [-58.51117474817349, -34.6248354452146],
     [-58.51188799002555, -34.62546748949772],
     [-58.512015585204, -34.625577298145636],
     [-58.512111388338575, -34.62565972492253],
     [-58.51296008664142, -34.62641318787346],
     [-58.51307115074686, -34.6265118049248],
     [-58.51350586129926, -34.62689479710183],
     [-58.51383786354434, -34.62718733704147],
     [-58.51396009554925, -34.62729510359845],
     [-58.51424486459441, -34.62711026363609],
     [-58.51507319075312, -34.62657173694762],
     [-58.51453525161185, -34.626097948352694],
     [-58.5140228861474, -34.62564097772857],
     [-58.51320049742753, -34.624867088462345],
     [-58.51308661950284, -34.62476086695865]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_11',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 703.0,
   'VIVIEND': 296.0,
   'HOGARES': 248.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.054536426267624,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51510073655625, -34.624856005172326],
     [-58.514194331984214, -34.623916452778325],
     [-58.51330363226492, -34.622993084319056],
     [-58.51318331748458, -34.62308531815565],
     [-58.5126931161087, -34.62346291802224],
     [-58.51215037275663, -34.62388096012718],
     [-58.51298211795712, -34.62466330353477],
     [-58.51308661950284, -34.62476086695865],
     [-58.51320049742753, -34.624867088462345],
     [-58.5140228861474, -34.62564097772857],
     [-58.51453525161185, -34.626097948352694],
     [-58.51507319075312, -34.62657173694762],
     [-58.515514351263974, -34.626228585882245],
     [-58.51561397525478, -34.62615009128986],
     [-58.51601408720253, -34.62583491419705],
     [-58.516122906840785, -34.62575014750186],
     [-58.51510073655625, -34.624856005172326]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_12',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 767.0,
   'VIVIEND': 305.0,
   'HOGARES': 265.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.051054007618815,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51367896505282, -34.62270546047885],
     [-58.51330363226492, -34.622993084319056],
     [-58.514194331984214, -34.623916452778325],
     [-58.51510073655625, -34.624856005172326],
     [-58.516122906840785, -34.62575014750186],
     [-58.516531280101894, -34.62543757073299],
     [-58.51665576593029, -34.625340754278255],
     [-58.517059789484506, -34.62502662833466],
     [-58.51718963833585, -34.62492565397089],
     [-58.516309039496875, -34.62414617771439],
     [-58.51617257447118, -34.62402588436501],
     [-58.515185025959866, -34.62315517822502],
     [-58.51502742579311, -34.6230161600908],
     [-58.51436114395767, -34.62242376230368],
     [-58.51421454196903, -34.62229487938669],
     [-58.51408520368578, -34.622394160254764],
     [-58.51367896505282, -34.62270546047885]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_13',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 820.0,
   'VIVIEND': 333.0,
   'HOGARES': 288.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.06404534401089,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5169036175716, -34.62643924596537],
     [-58.51773915173887, -34.627176695334796],
     [-58.51786726992904, -34.62728882155406],
     [-58.518373648321344, -34.62689851758066],
     [-58.518935197497555, -34.62646579131147],
     [-58.51949308036174, -34.62603707825721],
     [-58.5200172397185, -34.625634153358774],
     [-58.519552563971814, -34.62519239492976],
     [-58.519098377209225, -34.62475908062954],
     [-58.518713157531906, -34.624391508219006],
     [-58.51830572998357, -34.62405852248389],
     [-58.518182524745875, -34.62415372032506],
     [-58.517863825605836, -34.624401472823074],
     [-58.51774615420949, -34.624492935286675],
     [-58.51718963833585, -34.62492565397089],
     [-58.517059789484506, -34.62502662833466],
     [-58.51665576593029, -34.625340754278255],
     [-58.516531280101894, -34.62543757073299],
     [-58.516122906840785, -34.62575014750186],
     [-58.5169036175716, -34.62643924596537]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_14',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 737.0,
   'VIVIEND': 332.0,
   'HOGARES': 269.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.061725326455295,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.517353819350895, -34.62768454915461],
     [-58.51786726992904, -34.62728882155406],
     [-58.51773915173887, -34.627176695334796],
     [-58.5169036175716, -34.62643924596537],
     [-58.516122906840785, -34.62575014750186],
     [-58.51601408720253, -34.62583491419705],
     [-58.51561397525478, -34.62615009128986],
     [-58.515514351263974, -34.626228585882245],
     [-58.51507319075312, -34.62657173694762],
     [-58.51424486459441, -34.62711026363609],
     [-58.51396009554925, -34.62729510359845],
     [-58.51407695779235, -34.627398083517804],
     [-58.5148207568553, -34.628052703322666],
     [-58.51494529280994, -34.628162369316414],
     [-58.5157803992884, -34.6288971559974],
     [-58.516359772008585, -34.628450701442596],
     [-58.51681115727109, -34.62810282294142],
     [-58.517353819350895, -34.62768454915461]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_2',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 723.0,
   'VIVIEND': 348.0,
   'HOGARES': 292.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.057412167243809,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.516829947917316, -34.62109267873366],
     [-58.51634828457198, -34.62066225342456],
     [-58.51623580922058, -34.620747655802155],
     [-58.515335915238694, -34.62143453309747],
     [-58.51520947423624, -34.62153106741429],
     [-58.51489085951268, -34.621775713593344],
     [-58.51421454196903, -34.62229487938669],
     [-58.51436114395767, -34.62242376230368],
     [-58.51502742579311, -34.6230161600908],
     [-58.515185025959866, -34.62315517822502],
     [-58.51617257447118, -34.62402588436501],
     [-58.516309039496875, -34.62414617771439],
     [-58.51718963833585, -34.62492565397089],
     [-58.51774615420949, -34.624492935286675],
     [-58.517863825605836, -34.624401472823074],
     [-58.516959958430164, -34.62360496930353],
     [-58.516845314729146, -34.623504878447655],
     [-58.51674217817303, -34.623414712056906],
     [-58.51595825613379, -34.622719557207574],
     [-58.515860830694535, -34.62263192280121],
     [-58.51619255953756, -34.62237924012605],
     [-58.516306143072235, -34.62229151335699],
     [-58.51730565060099, -34.62151916107546],
     [-58.516829947917316, -34.62109267873366]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_3',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 936.0,
   'VIVIEND': 425.0,
   'HOGARES': 355.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.069555305480719,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51592526739048, -34.620284758885774],
     [-58.51581054288084, -34.6201824134912],
     [-58.515093989702635, -34.61954292814261],
     [-58.514411966083976, -34.6189342692679],
     [-58.51387207440005, -34.619356402667684],
     [-58.51333966990829, -34.61977261499039],
     [-58.512279357757976, -34.62060158002023],
     [-58.51245953319381, -34.62075770540503],
     [-58.51255303044842, -34.62083886522516],
     [-58.51295813221527, -34.62119335041422],
     [-58.513574186811184, -34.621732607415154],
     [-58.513684818560996, -34.621829745279],
     [-58.51407867991421, -34.62217556932571],
     [-58.51421454196903, -34.62229487938669],
     [-58.51489085951268, -34.621775713593344],
     [-58.51520947423624, -34.62153106741429],
     [-58.515335915238694, -34.62143453309747],
     [-58.51623580922058, -34.620747655802155],
     [-58.51634828457198, -34.62066225342456],
     [-58.51592526739048, -34.620284758885774]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_4',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 921.0,
   'VIVIEND': 364.0,
   'HOGARES': 323.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.071841895364761,
   'partidas': 26.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51304905669067, -34.61771792533833],
     [-58.512445045934925, -34.61717880124937],
     [-58.51205662329101, -34.61747931430226],
     [-58.511929078355294, -34.61757795842585],
     [-58.51169680684321, -34.617758758059864],
     [-58.51157368894624, -34.61785465352194],
     [-58.51129373529823, -34.61807293665461],
     [-58.51113987934554, -34.61819285824937],
     [-58.510411206861754, -34.61875977101103],
     [-58.5103029865297, -34.61884403951048],
     [-58.51090640925115, -34.61940049841125],
     [-58.511554738975896, -34.61996806316961],
     [-58.512178360913325, -34.62051401451399],
     [-58.512279357757976, -34.62060158002023],
     [-58.51333966990829, -34.61977261499039],
     [-58.51387207440005, -34.619356402667684],
     [-58.514411966083976, -34.6189342692679],
     [-58.51434216188604, -34.61887190382976],
     [-58.51373157176668, -34.61832701429815],
     [-58.51304905669067, -34.61771792533833]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_5',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 826.0,
   'VIVIEND': 345.0,
   'HOGARES': 299.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.067564389044285,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5103029865297, -34.61884403951048],
     [-58.50986490885634, -34.619184776556054],
     [-58.509737358440304, -34.619282925402004],
     [-58.50924691046386, -34.61966452587439],
     [-58.5088419434041, -34.6199732744104],
     [-58.50858385651467, -34.620170556853445],
     [-58.508482017834986, -34.62024834238024],
     [-58.50823048482408, -34.620438860976144],
     [-58.508071253796196, -34.62055948489614],
     [-58.507803708684754, -34.62075867061605],
     [-58.50769948354705, -34.62083680848116],
     [-58.50754748823117, -34.620950809256406],
     [-58.50726972189503, -34.62115675818133],
     [-58.507154593129265, -34.62123715310301],
     [-58.50777592985613, -34.621846226892835],
     [-58.508422298365524, -34.622414442604956],
     [-58.50941209037947, -34.62165349676329],
     [-58.509515461008746, -34.62157169576565],
     [-58.50985315968438, -34.62130445037829],
     [-58.510563290459054, -34.62074233723339],
     [-58.51065814415868, -34.62066729922866],
     [-58.5110070764208, -34.62039391937115],
     [-58.511447453333396, -34.62004902240075],
     [-58.511554738975896, -34.61996806316961],
     [-58.51090640925115, -34.61940049841125],
     [-58.5103029865297, -34.61884403951048]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_6',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 853.0,
   'VIVIEND': 399.0,
   'HOGARES': 339.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.04176566734755,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.507455394143115, -34.623157202743215],
     [-58.5079605681115, -34.623642936499934],
     [-58.50804622744133, -34.62372515899226],
     [-58.509044214721115, -34.62296104420067],
     [-58.508422298365524, -34.622414442604956],
     [-58.50777592985613, -34.621846226892835],
     [-58.507154593129265, -34.62123715310301],
     [-58.507010954252856, -34.621369319351636],
     [-58.50635715307906, -34.62186491209729],
     [-58.50623836416243, -34.62195439205181],
     [-58.50608295894172, -34.6220714908218],
     [-58.5056844385343, -34.622372127799174],
     [-58.50632696711079, -34.62294739824339],
     [-58.506973084194094, -34.62352590341033],
     [-58.507455394143115, -34.623157202743215]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_7',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 855.0,
   'VIVIEND': 366.0,
   'HOGARES': 306.0,
   'HOGARES_': 21.0,
   'AREA_KM': 0.05412984727335,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50804622744133, -34.62372515899226],
     [-58.5079605681115, -34.623642936499934],
     [-58.507455394143115, -34.623157202743215],
     [-58.506973084194094, -34.62352590341033],
     [-58.50820270019457, -34.62462679938859],
     [-58.50958287143043, -34.625862485378455],
     [-58.509961459994344, -34.625562125253786],
     [-58.51013406343923, -34.625425155584665],
     [-58.51061100590569, -34.625060810882054],
     [-58.51104988126937, -34.62472556416814],
     [-58.510677242699366, -34.624397327941246],
     [-58.510424784379545, -34.62417510093677],
     [-58.510352933746404, -34.624111888992644],
     [-58.50999470492039, -34.62379660288472],
     [-58.50989779697213, -34.623711357917465],
     [-58.50980446893495, -34.62362928053392],
     [-58.509667162050285, -34.62350862810091],
     [-58.50933467816336, -34.62321642891931],
     [-58.509044214721115, -34.62296104420067],
     [-58.50804622744133, -34.62372515899226]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_8',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 962.0,
   'VIVIEND': 407.0,
   'HOGARES': 357.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.073473987525165,
   'partidas': 36.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51200856970651, -34.62192628037117],
     [-58.512228421409795, -34.6217564713297],
     [-58.51295813221527, -34.62119335041422],
     [-58.51255303044842, -34.62083886522516],
     [-58.51245953319381, -34.62075770540503],
     [-58.512279357757976, -34.62060158002023],
     [-58.512178360913325, -34.62051401451399],
     [-58.511554738975896, -34.61996806316961],
     [-58.511447453333396, -34.62004902240075],
     [-58.5110070764208, -34.62039391937115],
     [-58.51065814415868, -34.62066729922866],
     [-58.510563290459054, -34.62074233723339],
     [-58.50985315968438, -34.62130445037829],
     [-58.509515461008746, -34.62157169576565],
     [-58.50941209037947, -34.62165349676329],
     [-58.508422298365524, -34.622414442604956],
     [-58.509044214721115, -34.62296104420067],
     [-58.50933467816336, -34.62321642891931],
     [-58.509667162050285, -34.62350862810091],
     [-58.50980446893495, -34.62362928053392],
     [-58.51089856906521, -34.62278391544692],
     [-58.51200856970651, -34.62192628037117]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_5_9',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 693.0,
   'VIVIEND': 314.0,
   'HOGARES': 263.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.066296057730615,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51089856906521, -34.62278391544692],
     [-58.50980446893495, -34.62362928053392],
     [-58.50989779697213, -34.623711357917465],
     [-58.50999470492039, -34.62379660288472],
     [-58.510352933746404, -34.624111888992644],
     [-58.510424784379545, -34.62417510093677],
     [-58.510677242699366, -34.624397327941246],
     [-58.51104988126937, -34.62472556416814],
     [-58.51151353216695, -34.62437143252942],
     [-58.511608134848565, -34.62429857704905],
     [-58.51215037275663, -34.62388096012718],
     [-58.5126931161087, -34.62346291802224],
     [-58.51318331748458, -34.62308531815565],
     [-58.51330363226492, -34.622993084319056],
     [-58.51367896505282, -34.62270546047885],
     [-58.51408520368578, -34.622394160254764],
     [-58.51421454196903, -34.62229487938669],
     [-58.51407867991421, -34.62217556932571],
     [-58.513684818560996, -34.621829745279],
     [-58.513574186811184, -34.621732607415154],
     [-58.51295813221527, -34.62119335041422],
     [-58.512228421409795, -34.6217564713297],
     [-58.51200856970651, -34.62192628037117],
     [-58.51089856906521, -34.62278391544692]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_1',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 662.0,
   'VIVIEND': 270.0,
   'HOGARES': 231.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.047461649451315,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.509705578454124, -34.618516310025505],
     [-58.50909217955732, -34.61898802858706],
     [-58.50837003910892, -34.61954344761626],
     [-58.50848279467773, -34.619646364148515],
     [-58.508724925494484, -34.619866345698945],
     [-58.5088419434041, -34.6199732744104],
     [-58.50924691046386, -34.61966452587439],
     [-58.509737358440304, -34.619282925402004],
     [-58.50986490885634, -34.619184776556054],
     [-58.5103029865297, -34.61884403951048],
     [-58.510411206861754, -34.61875977101103],
     [-58.51113987934554, -34.61819285824937],
     [-58.51129373529823, -34.61807293665461],
     [-58.51157368894624, -34.61785465352194],
     [-58.51169680684321, -34.617758758059864],
     [-58.511929078355294, -34.61757795842585],
     [-58.51205662329101, -34.61747931430226],
     [-58.512445045934925, -34.61717880124937],
     [-58.51197220537447, -34.61689899017135],
     [-58.51153583781949, -34.61663993752094],
     [-58.511076210494174, -34.61636708955816],
     [-58.5107502448665, -34.61670250365969],
     [-58.510444281457815, -34.61701537359567],
     [-58.51011728860847, -34.6173508567976],
     [-58.51000040138618, -34.617470692171516],
     [-58.5092365002367, -34.618259233671225],
     [-58.509705578454124, -34.618516310025505]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_10',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1100.0,
   'VIVIEND': 450.0,
   'HOGARES': 422.0,
   'HOGARES_': 36.0,
   'AREA_KM': 0.073509905706607,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50224291848111, -34.61565110982665],
     [-58.50133167065983, -34.61512787493829],
     [-58.50120796965618, -34.6152696761647],
     [-58.500477083008576, -34.616118575888905],
     [-58.500359423983554, -34.61625382499518],
     [-58.50022431142319, -34.61640907957027],
     [-58.49949842287964, -34.617240647613166],
     [-58.50059992137298, -34.61782151371545],
     [-58.50182745243232, -34.61846866817267],
     [-58.502611513260604, -34.61764791261122],
     [-58.50271095677191, -34.61754435781617],
     [-58.502832366090495, -34.617417978571176],
     [-58.503188503285294, -34.617046518919814],
     [-58.503629179286996, -34.61658685991456],
     [-58.50371831842073, -34.61649365996172],
     [-58.50291969371089, -34.616037864614476],
     [-58.502397989372625, -34.61574014494064],
     [-58.50224291848111, -34.61565110982665]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_11',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 786.0,
   'VIVIEND': 317.0,
   'HOGARES': 280.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.068853807854429,
   'partidas': 27.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5064213228377, -34.616712582694035],
     [-58.5063128552875, -34.61665255045418],
     [-58.50585001437897, -34.61639186717296],
     [-58.5056999670048, -34.616308116434766],
     [-58.50452396721868, -34.615651546334576],
     [-58.504432190697145, -34.61574756472258],
     [-58.504168949139746, -34.616022727891966],
     [-58.50371831842073, -34.61649365996172],
     [-58.503629179286996, -34.61658685991456],
     [-58.503188503285294, -34.617046518919814],
     [-58.502832366090495, -34.617417978571176],
     [-58.50271095677191, -34.61754435781617],
     [-58.502946546287944, -34.61766885910102],
     [-58.50319977253562, -34.617799973862226],
     [-58.50364453926628, -34.61803025035147],
     [-58.50384118924272, -34.61812708661472],
     [-58.50407285853037, -34.61824123481241],
     [-58.50440098339265, -34.61841035020747],
     [-58.504516692512595, -34.61847052249395],
     [-58.5048953472326, -34.61866771810409],
     [-58.505085271048415, -34.61876532933282],
     [-58.50537739669261, -34.618492689444736],
     [-58.50608126626559, -34.61783616670643],
     [-58.5062159597471, -34.61771048361],
     [-58.50685510821882, -34.61711130394954],
     [-58.50696110702595, -34.61701189828401],
     [-58.50678524063847, -34.616915482063455],
     [-58.50654367918508, -34.61678028598441],
     [-58.5064213228377, -34.616712582694035]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_12',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 717.0,
   'VIVIEND': 317.0,
   'HOGARES': 266.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.079046099904865,
   'partidas': 23.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50608126626559, -34.61783616670643],
     [-58.50537739669261, -34.618492689444736],
     [-58.505085271048415, -34.61876532933282],
     [-58.50527434329131, -34.61886258844499],
     [-58.50613314549771, -34.61931355795785],
     [-58.506314553468904, -34.619410536483564],
     [-58.507303400357685, -34.61993891672472],
     [-58.507444592146605, -34.620014288319126],
     [-58.50823048482408, -34.620438860976144],
     [-58.508482017834986, -34.62024834238024],
     [-58.50858385651467, -34.620170556853445],
     [-58.5088419434041, -34.6199732744104],
     [-58.508724925494484, -34.619866345698945],
     [-58.50848279467773, -34.619646364148515],
     [-58.50837003910892, -34.61954344761626],
     [-58.50909217955732, -34.61898802858706],
     [-58.509705578454124, -34.618516310025505],
     [-58.5092365002367, -34.618259233671225],
     [-58.50821868281672, -34.617701301987324],
     [-58.507426507327004, -34.61726701294281],
     [-58.50696110702595, -34.61701189828401],
     [-58.50685510821882, -34.61711130394954],
     [-58.5062159597471, -34.61771048361],
     [-58.50608126626559, -34.61783616670643]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_13',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1043.0,
   'VIVIEND': 479.0,
   'HOGARES': 395.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.076667065970421,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.506314553468904, -34.619410536483564],
     [-58.50613314549771, -34.61931355795785],
     [-58.50527434329131, -34.61886258844499],
     [-58.505085271048415, -34.61876532933282],
     [-58.5048953472326, -34.61866771810409],
     [-58.504516692512595, -34.61847052249395],
     [-58.50440098339265, -34.61841035020747],
     [-58.50407285853037, -34.61824123481241],
     [-58.50384118924272, -34.61812708661472],
     [-58.50364453926628, -34.61803025035147],
     [-58.50319977253562, -34.617799973862226],
     [-58.502946546287944, -34.61766885910102],
     [-58.50271095677191, -34.61754435781617],
     [-58.502611513260604, -34.61764791261122],
     [-58.50182745243232, -34.61846866817267],
     [-58.50244833772515, -34.61879178067002],
     [-58.502926253126205, -34.61904049982859],
     [-58.50376126988332, -34.61947494440576],
     [-58.50399814359839, -34.61959824598991],
     [-58.504152452634116, -34.61967840574023],
     [-58.50536733758383, -34.620309120039124],
     [-58.50629253025277, -34.620789501991794],
     [-58.507154593129265, -34.62123715310301],
     [-58.50726972189503, -34.62115675818133],
     [-58.50754748823117, -34.620950809256406],
     [-58.50769948354705, -34.62083680848116],
     [-58.507803708684754, -34.62075867061605],
     [-58.508071253796196, -34.62055948489614],
     [-58.50823048482408, -34.620438860976144],
     [-58.507444592146605, -34.620014288319126],
     [-58.507303400357685, -34.61993891672472],
     [-58.506314553468904, -34.619410536483564]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_2',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 682.0,
   'VIVIEND': 299.0,
   'HOGARES': 247.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.06672949306152,
   'partidas': 26.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5102397022948, -34.61586875105874],
     [-58.5101020029289, -34.615785493879656],
     [-58.50997427323346, -34.61570800739146],
     [-58.509827030326996, -34.61561792253732],
     [-58.509742842968876, -34.615566405174185],
     [-58.50953654937541, -34.61543852541031],
     [-58.50941683067191, -34.615366387428786],
     [-58.50914254364094, -34.61520127908403],
     [-58.50897920035564, -34.61510549503866],
     [-58.50811779701201, -34.61592667277092],
     [-58.50798745166732, -34.61604897606959],
     [-58.50696110702595, -34.61701189828401],
     [-58.507426507327004, -34.61726701294281],
     [-58.50821868281672, -34.617701301987324],
     [-58.5092365002367, -34.618259233671225],
     [-58.51000040138618, -34.617470692171516],
     [-58.51011728860847, -34.6173508567976],
     [-58.510444281457815, -34.61701537359567],
     [-58.5107502448665, -34.61670250365969],
     [-58.511076210494174, -34.61636708955816],
     [-58.51064905124522, -34.61611359349894],
     [-58.510402027722336, -34.615966928193124],
     [-58.5102397022948, -34.61586875105874]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_3',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1071.0,
   'VIVIEND': 429.0,
   'HOGARES': 388.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.07803298588378,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50556976155851, -34.6145566642821],
     [-58.50503937595646, -34.61511192603855],
     [-58.50452396721868, -34.615651546334576],
     [-58.5056999670048, -34.616308116434766],
     [-58.50585001437897, -34.61639186717296],
     [-58.5063128552875, -34.61665255045418],
     [-58.5064213228377, -34.616712582694035],
     [-58.50654367918508, -34.61678028598441],
     [-58.50678524063847, -34.616915482063455],
     [-58.50696110702595, -34.61701189828401],
     [-58.50798745166732, -34.61604897606959],
     [-58.50811779701201, -34.61592667277092],
     [-58.50897920035564, -34.61510549503866],
     [-58.50860437293725, -34.614885915933684],
     [-58.508454664453076, -34.61479892896305],
     [-58.50824624897667, -34.61467787885647],
     [-58.50812346686588, -34.61460729005226],
     [-58.50786623008452, -34.6144594261776],
     [-58.507706980065585, -34.61436687837291],
     [-58.50741412800298, -34.61419677290417],
     [-58.50726663762676, -34.61411161465804],
     [-58.50702354753361, -34.61397120869646],
     [-58.50692036374984, -34.613910329968725],
     [-58.50645326941959, -34.613634720650005],
     [-58.50633978809308, -34.61375229782221],
     [-58.50600589884819, -34.61410094181352],
     [-58.50568111609194, -34.614440074516615],
     [-58.50556976155851, -34.6145566642821]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_4',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 868.0,
   'VIVIEND': 386.0,
   'HOGARES': 319.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.068758076424718,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.503120392869384, -34.611671270598016],
     [-58.50280685336207, -34.611483625424974],
     [-58.50265195875441, -34.611391351233614],
     [-58.502500813310554, -34.61130132916831],
     [-58.50176818079147, -34.61086663133335],
     [-58.501660576900605, -34.61099096296783],
     [-58.501068839366596, -34.61168439797813],
     [-58.50094233574291, -34.6118339464636],
     [-58.50169857351649, -34.61228364181536],
     [-58.50186267050536, -34.61238154811691],
     [-58.502902812338625, -34.61300199150204],
     [-58.503087360437746, -34.613111438829016],
     [-58.50331101700622, -34.61324404213808],
     [-58.50380042118271, -34.613531205421566],
     [-58.50395838700633, -34.6136225615785],
     [-58.504146174192115, -34.61373109069295],
     [-58.505401393875495, -34.614452708094966],
     [-58.50556976155851, -34.6145566642821],
     [-58.50568111609194, -34.614440074516615],
     [-58.50600589884819, -34.61410094181352],
     [-58.50633978809308, -34.61375229782221],
     [-58.50645326941959, -34.613634720650005],
     [-58.504963053004786, -34.61275551776102],
     [-58.50481088498236, -34.61267444269759],
     [-58.50464832289044, -34.61258794842054],
     [-58.504063745762664, -34.61223469328083],
     [-58.50392571799126, -34.612151710880504],
     [-58.50367752426655, -34.61200242658521],
     [-58.503538219786, -34.61191979628854],
     [-58.503259356089046, -34.61175446487568],
     [-58.503120392869384, -34.611671270598016]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_5',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 876.0,
   'VIVIEND': 394.0,
   'HOGARES': 353.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.074790632161796,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502078633455106, -34.61426769704275],
     [-58.501947783688124, -34.61441745918053],
     [-58.501437833493966, -34.61500607937341],
     [-58.50133167065983, -34.61512787493829],
     [-58.50224291848111, -34.61565110982665],
     [-58.502397989372625, -34.61574014494064],
     [-58.50291969371089, -34.616037864614476],
     [-58.50371831842073, -34.61649365996172],
     [-58.504168949139746, -34.616022727891966],
     [-58.504432190697145, -34.61574756472258],
     [-58.50452396721868, -34.615651546334576],
     [-58.50503937595646, -34.61511192603855],
     [-58.50556976155851, -34.6145566642821],
     [-58.505401393875495, -34.614452708094966],
     [-58.504146174192115, -34.61373109069295],
     [-58.50395838700633, -34.6136225615785],
     [-58.50380042118271, -34.613531205421566],
     [-58.50331101700622, -34.61324404213808],
     [-58.503087360437746, -34.613111438829016],
     [-58.502948853030176, -34.61327106386864],
     [-58.502078633455106, -34.61426769704275]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_6',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 851.0,
   'VIVIEND': 351.0,
   'HOGARES': 298.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.097823734417818,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.502078633455106, -34.61426769704275],
     [-58.502948853030176, -34.61327106386864],
     [-58.503087360437746, -34.613111438829016],
     [-58.502902812338625, -34.61300199150204],
     [-58.50186267050536, -34.61238154811691],
     [-58.50169857351649, -34.61228364181536],
     [-58.50094233574291, -34.6118339464636],
     [-58.50079229902019, -34.6117447670205],
     [-58.500000713418245, -34.61127373854399],
     [-58.49987641780692, -34.61141145413661],
     [-58.49894376262659, -34.61244632414485],
     [-58.49816705736905, -34.61330825234377],
     [-58.49902603890651, -34.61380385024789],
     [-58.49919192333587, -34.61389908349874],
     [-58.500198058484806, -34.61447681300369],
     [-58.50133167065983, -34.61512787493829],
     [-58.501437833493966, -34.61500607937341],
     [-58.501947783688124, -34.61441745918053],
     [-58.502078633455106, -34.61426769704275]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_7',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 831.0,
   'VIVIEND': 350.0,
   'HOGARES': 284.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.071894639809072,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49875026236303, -34.610527626848715],
     [-58.49784281312655, -34.611557410660964],
     [-58.49769867917753, -34.61172315823548],
     [-58.49755743930773, -34.61188566533457],
     [-58.49693202352881, -34.61259683649069],
     [-58.49800841699475, -34.6132167480296],
     [-58.49816705736905, -34.61330825234377],
     [-58.49894376262659, -34.61244632414485],
     [-58.49987641780692, -34.61141145413661],
     [-58.500000713418245, -34.61127373854399],
     [-58.50079229902019, -34.6117447670205],
     [-58.50094233574291, -34.6118339464636],
     [-58.501068839366596, -34.61168439797813],
     [-58.501660576900605, -34.61099096296783],
     [-58.50176818079147, -34.61086663133335],
     [-58.50160587633692, -34.610770344044795],
     [-58.500858768390415, -34.61032472970122],
     [-58.5007261999627, -34.610245685653524],
     [-58.49959137172913, -34.6095729979366],
     [-58.49875026236303, -34.610527626848715]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_8',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 866.0,
   'VIVIEND': 392.0,
   'HOGARES': 339.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.059164778384447,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49595940149111, -34.61371099137175],
     [-58.49583867338466, -34.613849476482564],
     [-58.4949720224332, -34.6148381705194],
     [-58.49620040491661, -34.615490381773355],
     [-58.497174506311936, -34.6144096055271],
     [-58.497404716339055, -34.61454355582855],
     [-58.49805820023546, -34.61491654132126],
     [-58.498247942583525, -34.615026909932524],
     [-58.49835776866941, -34.61489610179309],
     [-58.49906430640073, -34.61405032047724],
     [-58.49919192333587, -34.61389908349874],
     [-58.49902603890651, -34.61380385024789],
     [-58.49816705736905, -34.61330825234377],
     [-58.49800841699475, -34.6132167480296],
     [-58.49693202352881, -34.61259683649069],
     [-58.496803039771684, -34.612743494003546],
     [-58.49595940149111, -34.61371099137175]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_6_9',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 965.0,
   'VIVIEND': 459.0,
   'HOGARES': 357.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.087291367512792,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.498247942583525, -34.615026909932524],
     [-58.49805820023546, -34.61491654132126],
     [-58.497404716339055, -34.61454355582855],
     [-58.497174506311936, -34.6144096055271],
     [-58.49620040491661, -34.615490381773355],
     [-58.4973447995728, -34.616097885668786],
     [-58.4984558121755, -34.616687782728896],
     [-58.49931540927725, -34.617144081933844],
     [-58.49949842287964, -34.617240647613166],
     [-58.50022431142319, -34.61640907957027],
     [-58.500359423983554, -34.61625382499518],
     [-58.500477083008576, -34.616118575888905],
     [-58.50120796965618, -34.6152696761647],
     [-58.50133167065983, -34.61512787493829],
     [-58.500198058484806, -34.61447681300369],
     [-58.49919192333587, -34.61389908349874],
     [-58.49906430640073, -34.61405032047724],
     [-58.49835776866941, -34.61489610179309],
     [-58.498247942583525, -34.615026909932524]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_1',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1142.0,
   'VIVIEND': 438.0,
   'HOGARES': 381.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.108222844556332,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50820270019457, -34.62462679938859],
     [-58.50809463943918, -34.62470930521213],
     [-58.50738547040586, -34.625252529872355],
     [-58.506254459919994, -34.624228351890906],
     [-58.50616275296753, -34.62414528522321],
     [-58.505168130779616, -34.62490564270678],
     [-58.50416071663695, -34.625675644316885],
     [-58.505268046035084, -34.6267160470658],
     [-58.50536112016039, -34.626803339282326],
     [-58.506576556555295, -34.62794320001178],
     [-58.50669221525059, -34.62804118738759],
     [-58.50757948441445, -34.62737571740899],
     [-58.50771122424735, -34.62727771024461],
     [-58.508654513585235, -34.62657650713565],
     [-58.508760702651706, -34.626495198741495],
     [-58.50948111358754, -34.62594322941135],
     [-58.50958287143043, -34.625862485378455],
     [-58.50820270019457, -34.62462679938859]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_10',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1115.0,
   'VIVIEND': 439.0,
   'HOGARES': 402.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.07413875432926,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501452971394414, -34.622468405549306],
     [-58.501058974268346, -34.62338297556237],
     [-58.50097964682966, -34.623531382188645],
     [-58.50115296036617, -34.623618159496054],
     [-58.50209596572501, -34.624089412377586],
     [-58.50289071261031, -34.62447929764951],
     [-58.5034288268542, -34.624073411101435],
     [-58.50385538024361, -34.62375171557761],
     [-58.50487819275084, -34.62298121796681],
     [-58.5052515978196, -34.62269862075894],
     [-58.50445039863646, -34.622340654680784],
     [-58.50331503026849, -34.621833286520655],
     [-58.50316174650746, -34.62176594242862],
     [-58.50197144142805, -34.62124315723003],
     [-58.501515516656674, -34.62232338424587],
     [-58.501452971394414, -34.622468405549306]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_2',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1068.0,
   'VIVIEND': 521.0,
   'HOGARES': 407.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.07810764022544,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50632696711079, -34.62294739824339],
     [-58.5056844385343, -34.622372127799174],
     [-58.5052515978196, -34.62269862075894],
     [-58.50487819275084, -34.62298121796681],
     [-58.50385538024361, -34.62375171557761],
     [-58.5034288268542, -34.624073411101435],
     [-58.50289071261031, -34.62447929764951],
     [-58.50406849721419, -34.62558891426286],
     [-58.50416071663695, -34.625675644316885],
     [-58.505168130779616, -34.62490564270678],
     [-58.50616275296753, -34.62414528522321],
     [-58.506254459919994, -34.624228351890906],
     [-58.50738547040586, -34.625252529872355],
     [-58.50809463943918, -34.62470930521213],
     [-58.50820270019457, -34.62462679938859],
     [-58.506973084194094, -34.62352590341033],
     [-58.50632696711079, -34.62294739824339]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_3',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1223.0,
   'VIVIEND': 522.0,
   'HOGARES': 471.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.080765644538205,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.503667224935285, -34.620685692537975],
     [-58.50258582154583, -34.62021069400194],
     [-58.50243730950628, -34.62013869948555],
     [-58.50202862266803, -34.621107714922026],
     [-58.50197144142805, -34.62124315723003],
     [-58.50316174650746, -34.62176594242862],
     [-58.50331503026849, -34.621833286520655],
     [-58.50445039863646, -34.622340654680784],
     [-58.5052515978196, -34.62269862075894],
     [-58.5056844385343, -34.622372127799174],
     [-58.50608295894172, -34.6220714908218],
     [-58.50623836416243, -34.62195439205181],
     [-58.50635715307906, -34.62186491209729],
     [-58.507010954252856, -34.621369319351636],
     [-58.507154593129265, -34.62123715310301],
     [-58.50629253025277, -34.620789501991794],
     [-58.50536733758383, -34.620309120039124],
     [-58.504152452634116, -34.61967840574023],
     [-58.50405822189602, -34.619816748994026],
     [-58.50383451961369, -34.62032028044561],
     [-58.50372917692576, -34.62055736056696],
     [-58.503667224935285, -34.620685692537975]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_4',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1133.0,
   'VIVIEND': 533.0,
   'HOGARES': 434.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.091696483283222,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50066365628269, -34.620667790820754],
     [-58.50084428650836, -34.62074801697104],
     [-58.50147342627577, -34.62102437069191],
     [-58.50197144142805, -34.62124315723003],
     [-58.50202862266803, -34.621107714922026],
     [-58.50243730950628, -34.62013869948555],
     [-58.50258582154583, -34.62021069400194],
     [-58.503667224935285, -34.620685692537975],
     [-58.50372917692576, -34.62055736056696],
     [-58.50383451961369, -34.62032028044561],
     [-58.50405822189602, -34.619816748994026],
     [-58.504152452634116, -34.61967840574023],
     [-58.50399814359839, -34.61959824598991],
     [-58.50376126988332, -34.61947494440576],
     [-58.502926253126205, -34.61904049982859],
     [-58.50244833772515, -34.61879178067002],
     [-58.50182745243232, -34.61846866817267],
     [-58.50059992137298, -34.61782151371545],
     [-58.49949842287964, -34.617240647613166],
     [-58.49881064858127, -34.61779874636959],
     [-58.499717665481306, -34.61854728517938],
     [-58.50069883685233, -34.6193570623075],
     [-58.49987497292631, -34.620016477824954],
     [-58.499760183969535, -34.62010728832275],
     [-58.499631173805675, -34.620209300314166],
     [-58.50066365628269, -34.620667790820754]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_5',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 843.0,
   'VIVIEND': 444.0,
   'HOGARES': 366.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.1038842127406,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49881064858127, -34.61779874636959],
     [-58.49949842287964, -34.617240647613166],
     [-58.49931540927725, -34.617144081933844],
     [-58.4984558121755, -34.616687782728896],
     [-58.4973447995728, -34.616097885668786],
     [-58.49620040491661, -34.615490381773355],
     [-58.4949720224332, -34.6148381705194],
     [-58.49418468716406, -34.61546310143475],
     [-58.495022969629495, -34.61618183370009],
     [-58.495178731467554, -34.616312497970085],
     [-58.495925679255265, -34.61693892327817],
     [-58.496074541479125, -34.61706282763064],
     [-58.497000443565724, -34.61782884654923],
     [-58.497871230495676, -34.61855114139084],
     [-58.49799496009229, -34.618653219395455],
     [-58.498775349342, -34.61929609636326],
     [-58.499760183969535, -34.62010728832275],
     [-58.49987497292631, -34.620016477824954],
     [-58.50069883685233, -34.6193570623075],
     [-58.499717665481306, -34.61854728517938],
     [-58.49881064858127, -34.61779874636959]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_6',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 960.0,
   'VIVIEND': 412.0,
   'HOGARES': 342.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.084464478883386,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.495381115249856, -34.61912071304837],
     [-58.49592646182871, -34.61868901195869],
     [-58.49499766126386, -34.617916365976654],
     [-58.495958049196304, -34.61715462098702],
     [-58.496074541479125, -34.61706282763064],
     [-58.495925679255265, -34.61693892327817],
     [-58.495178731467554, -34.616312497970085],
     [-58.495022969629495, -34.61618183370009],
     [-58.49418468716406, -34.61546310143475],
     [-58.49322838948018, -34.61622018371418],
     [-58.49310908562114, -34.61631570750169],
     [-58.49203550892825, -34.617175345813266],
     [-58.49217737993776, -34.617296650937334],
     [-58.493033470781754, -34.61802637838263],
     [-58.49319204564112, -34.618161551539515],
     [-58.493915394036954, -34.61877419190081],
     [-58.49405684400032, -34.61889394560154],
     [-58.49484538590976, -34.61954473300203],
     [-58.495381115249856, -34.61912071304837]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_7',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1514.0,
   'VIVIEND': 556.0,
   'HOGARES': 515.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.048076013041377,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497000443565724, -34.61782884654923],
     [-58.496074541479125, -34.61706282763064],
     [-58.495958049196304, -34.61715462098702],
     [-58.49499766126386, -34.617916365976654],
     [-58.49592646182871, -34.61868901195869],
     [-58.49679605630274, -34.61941237104632],
     [-58.49691117966311, -34.61950818487082],
     [-58.49769395558564, -34.620155434238136],
     [-58.498775349342, -34.61929609636326],
     [-58.49799496009229, -34.618653219395455],
     [-58.497871230495676, -34.61855114139084],
     [-58.497000443565724, -34.61782884654923]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_8',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 1047.0,
   'VIVIEND': 419.0,
   'HOGARES': 384.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.066315362595618,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49571804529878, -34.6202647889718],
     [-58.496619863180186, -34.621008985676305],
     [-58.497599755115644, -34.621817449716694],
     [-58.49855037134456, -34.62106399753963],
     [-58.4986741895449, -34.6209660023607],
     [-58.499631173805675, -34.620209300314166],
     [-58.499760183969535, -34.62010728832275],
     [-58.498775349342, -34.61929609636326],
     [-58.49769395558564, -34.620155434238136],
     [-58.49691117966311, -34.61950818487082],
     [-58.49679605630274, -34.61941237104632],
     [-58.49592646182871, -34.61868901195869],
     [-58.495381115249856, -34.61912071304837],
     [-58.49484538590976, -34.61954473300203],
     [-58.49571804529878, -34.6202647889718]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_7_9',
   'BARRIO': 'MONTE CASTRO',
   'COMUNA': '10',
   'POBLACI': 959.0,
   'VIVIEND': 395.0,
   'HOGARES': 339.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.078272891938567,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.499668815084064, -34.62287494917288],
     [-58.50097964682966, -34.623531382188645],
     [-58.501058974268346, -34.62338297556237],
     [-58.501452971394414, -34.622468405549306],
     [-58.501515516656674, -34.62232338424587],
     [-58.50197144142805, -34.62124315723003],
     [-58.50147342627577, -34.62102437069191],
     [-58.50084428650836, -34.62074801697104],
     [-58.50066365628269, -34.620667790820754],
     [-58.499631173805675, -34.620209300314166],
     [-58.4986741895449, -34.6209660023607],
     [-58.49855037134456, -34.62106399753963],
     [-58.497599755115644, -34.621817449716694],
     [-58.498571954904584, -34.62232506002284],
     [-58.49874270747214, -34.622411066871265],
     [-58.499668815084064, -34.62287494917288]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_1',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1085.0,
   'VIVIEND': 468.0,
   'HOGARES': 406.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.073051084818035,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51068408451155, -34.62621952520972],
     [-58.51053583044191, -34.626330992903675],
     [-58.511082875435385, -34.626824654850125],
     [-58.51166794282474, -34.62735252469914],
     [-58.511829057622315, -34.62723492365332],
     [-58.51226419874489, -34.62762890605008],
     [-58.51234014609213, -34.627697115206864],
     [-58.51276582849391, -34.62807926854107],
     [-58.51287041706349, -34.62817317005372],
     [-58.51323225939598, -34.628497812257336],
     [-58.51361174932697, -34.628838220788566],
     [-58.513701593432934, -34.62891938114026],
     [-58.5148207568553, -34.628052703322666],
     [-58.51407695779235, -34.627398083517804],
     [-58.51396009554925, -34.62729510359845],
     [-58.51383786354434, -34.62718733704147],
     [-58.51350586129926, -34.62689479710183],
     [-58.51307115074686, -34.6265118049248],
     [-58.51296008664142, -34.62641318787346],
     [-58.512111388338575, -34.62565972492253],
     [-58.512015585204, -34.625577298145636],
     [-58.51188799002555, -34.62546748949772],
     [-58.51117474817349, -34.6248354452146],
     [-58.51104988126937, -34.62472556416814],
     [-58.51061100590569, -34.625060810882054],
     [-58.51013406343923, -34.625425155584665],
     [-58.509961459994344, -34.625562125253786],
     [-58.51009519680452, -34.62569003228804],
     [-58.51068408451155, -34.62621952520972]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_2',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1208.0,
   'VIVIEND': 489.0,
   'HOGARES': 428.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.122443242598116,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51323225939598, -34.628497812257336],
     [-58.51287041706349, -34.62817317005372],
     [-58.51276582849391, -34.62807926854107],
     [-58.51264822365394, -34.62815762730266],
     [-58.51152595069502, -34.62899266643584],
     [-58.511413372985324, -34.62907637414253],
     [-58.51050661216449, -34.62975131615887],
     [-58.50948921378382, -34.63050854806957],
     [-58.510498016010764, -34.631400206593675],
     [-58.511329708028505, -34.63213523596509],
     [-58.51144316497467, -34.632236599950254],
     [-58.51230616088894, -34.63157307759119],
     [-58.51242154957688, -34.631484367906864],
     [-58.51343602263468, -34.63070429579023],
     [-58.51430588435118, -34.63003547453815],
     [-58.51452515716032, -34.62986692943787],
     [-58.51464658666993, -34.62977293332396],
     [-58.515046212289825, -34.62946381618119],
     [-58.515312741211524, -34.62925757298175],
     [-58.5157803992884, -34.6288971559974],
     [-58.51494529280994, -34.628162369316414],
     [-58.5148207568553, -34.628052703322666],
     [-58.513701593432934, -34.62891938114026],
     [-58.51361174932697, -34.628838220788566],
     [-58.51323225939598, -34.628497812257336]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_3',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 800.0,
   'VIVIEND': 362.0,
   'HOGARES': 319.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.054227188217521,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51166794282474, -34.62735252469914],
     [-58.511082875435385, -34.626824654850125],
     [-58.51053583044191, -34.626330992903675],
     [-58.51068408451155, -34.62621952520972],
     [-58.51009519680452, -34.62569003228804],
     [-58.509961459994344, -34.625562125253786],
     [-58.50958287143043, -34.625862485378455],
     [-58.50948111358754, -34.62594322941135],
     [-58.508760702651706, -34.626495198741495],
     [-58.508892559985064, -34.626614234464775],
     [-58.50946704421112, -34.62713500616295],
     [-58.50969632847133, -34.62734280722074],
     [-58.51001835119683, -34.627634657153],
     [-58.510103417428205, -34.627711807906586],
     [-58.51058355703452, -34.62814430023972],
     [-58.5111056387971, -34.628614450396846],
     [-58.511433637052804, -34.628909885736036],
     [-58.51152595069502, -34.62899266643584],
     [-58.51264822365394, -34.62815762730266],
     [-58.51276582849391, -34.62807926854107],
     [-58.51234014609213, -34.627697115206864],
     [-58.51226419874489, -34.62762890605008],
     [-58.511829057622315, -34.62723492365332],
     [-58.51166794282474, -34.62735252469914]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_4',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1021.0,
   'VIVIEND': 458.0,
   'HOGARES': 367.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.094685050361291,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51001835119683, -34.627634657153],
     [-58.50969632847133, -34.62734280722074],
     [-58.50946704421112, -34.62713500616295],
     [-58.508892559985064, -34.626614234464775],
     [-58.508760702651706, -34.626495198741495],
     [-58.508654513585235, -34.62657650713565],
     [-58.50771122424735, -34.62727771024461],
     [-58.50757948441445, -34.62737571740899],
     [-58.50669221525059, -34.62804118738759],
     [-58.50756294576647, -34.62877918656481],
     [-58.50765534073065, -34.62886218143701],
     [-58.50855151334336, -34.629667347743634],
     [-58.50901835848316, -34.63008682281461],
     [-58.50940090731784, -34.63043048266421],
     [-58.50948921378382, -34.63050854806957],
     [-58.51050661216449, -34.62975131615887],
     [-58.511413372985324, -34.62907637414253],
     [-58.51152595069502, -34.62899266643584],
     [-58.511433637052804, -34.628909885736036],
     [-58.5111056387971, -34.628614450396846],
     [-58.51058355703452, -34.62814430023972],
     [-58.510103417428205, -34.627711807906586],
     [-58.51001835119683, -34.627634657153]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_5',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 848.0,
   'VIVIEND': 327.0,
   'HOGARES': 302.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.07979815910393,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50901835848316, -34.63008682281461],
     [-58.50855151334336, -34.629667347743634],
     [-58.50765534073065, -34.62886218143701],
     [-58.50756294576647, -34.62877918656481],
     [-58.50669221525059, -34.62804118738759],
     [-58.50655945154596, -34.62814081354075],
     [-58.50570298808769, -34.62877098316794],
     [-58.50664107902204, -34.62961854347453],
     [-58.50741800598239, -34.63032052060269],
     [-58.50753750723965, -34.63042681565715],
     [-58.508478782208215, -34.63126428990706],
     [-58.50937276793715, -34.63205952100904],
     [-58.509500457003284, -34.63217271243888],
     [-58.51044125833533, -34.633006861582295],
     [-58.51144316497467, -34.632236599950254],
     [-58.511329708028505, -34.63213523596509],
     [-58.510498016010764, -34.631400206593675],
     [-58.50948921378382, -34.63050854806957],
     [-58.50940090731784, -34.63043048266421],
     [-58.50901835848316, -34.63008682281461]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_6',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 882.0,
   'VIVIEND': 326.0,
   'HOGARES': 290.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.079835239786088,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50950311969457, -34.63372807597084],
     [-58.51044125833533, -34.633006861582295],
     [-58.509500457003284, -34.63217271243888],
     [-58.50937276793715, -34.63205952100904],
     [-58.508478782208215, -34.63126428990706],
     [-58.50753750723965, -34.63042681565715],
     [-58.50671339439115, -34.63104205054956],
     [-58.506597147305385, -34.63112892415036],
     [-58.507428213607085, -34.63187841713686],
     [-58.507533397358884, -34.6319723933724],
     [-58.5065021526233, -34.632748337746165],
     [-58.507552293946915, -34.633681695923414],
     [-58.507654666878295, -34.63377257444312],
     [-58.508485166795374, -34.634511355786856],
     [-58.50860277749226, -34.63442025453585],
     [-58.50950311969457, -34.63372807597084]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_7',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1154.0,
   'VIVIEND': 487.0,
   'HOGARES': 425.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.095561813765578,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50555764080663, -34.63190613123478],
     [-58.50537990249764, -34.63203901154659],
     [-58.504413956641685, -34.63276076003163],
     [-58.505341520002624, -34.633618544711574],
     [-58.506392120291245, -34.63283119477936],
     [-58.5065021526233, -34.632748337746165],
     [-58.507533397358884, -34.6319723933724],
     [-58.507428213607085, -34.63187841713686],
     [-58.506597147305385, -34.63112892415036],
     [-58.50671339439115, -34.63104205054956],
     [-58.50753750723965, -34.63042681565715],
     [-58.50741800598239, -34.63032052060269],
     [-58.50664107902204, -34.62961854347453],
     [-58.50570298808769, -34.62877098316794],
     [-58.50475555767573, -34.629468080103344],
     [-58.503714600853215, -34.63023407491407],
     [-58.50382864329565, -34.63033741766962],
     [-58.5045651531344, -34.63100527130042],
     [-58.50466615684075, -34.631097068341724],
     [-58.50499388773022, -34.6313949857836],
     [-58.50543933310423, -34.63180060850234],
     [-58.50555764080663, -34.63190613123478]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_8',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 1121.0,
   'VIVIEND': 469.0,
   'HOGARES': 408.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.091372250796199,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501905676639, -34.631564892175305],
     [-58.501568753891824, -34.631812818953314],
     [-58.501450966848964, -34.63189975855466],
     [-58.501040541391895, -34.63220270764035],
     [-58.50093629577005, -34.63228119170894],
     [-58.50044078580052, -34.63265444766144],
     [-58.50057278234889, -34.632709548037184],
     [-58.50180678370025, -34.633242543187244],
     [-58.502794098406135, -34.6336689865815],
     [-58.50299282377659, -34.63375483726493],
     [-58.50328605522098, -34.633881501603916],
     [-58.503655811221286, -34.63403813979786],
     [-58.50397264867078, -34.63417240024371],
     [-58.50332203103079, -34.63357662806394],
     [-58.504413956641685, -34.63276076003163],
     [-58.50537990249764, -34.63203901154659],
     [-58.50555764080663, -34.63190613123478],
     [-58.50543933310423, -34.63180060850234],
     [-58.50499388773022, -34.6313949857836],
     [-58.50466615684075, -34.631097068341724],
     [-58.5045651531344, -34.63100527130042],
     [-58.50382864329565, -34.63033741766962],
     [-58.503714600853215, -34.63023407491407],
     [-58.50257815351812, -34.63107016301635],
     [-58.501905676639, -34.631564892175305]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_8_9',
   'BARRIO': 'VILLA LURO',
   'COMUNA': '10',
   'POBLACI': 800.0,
   'VIVIEND': 333.0,
   'HOGARES': 264.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.117351028914034,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.507552293946915, -34.633681695923414],
     [-58.5065021526233, -34.632748337746165],
     [-58.506392120291245, -34.63283119477936],
     [-58.505341520002624, -34.633618544711574],
     [-58.504413956641685, -34.63276076003163],
     [-58.50332203103079, -34.63357662806394],
     [-58.50397264867078, -34.63417240024371],
     [-58.5044698745254, -34.63468631947827],
     [-58.50452187345432, -34.6347400344688],
     [-58.50485577642586, -34.63508506301849],
     [-58.50525828088, -34.635453869712826],
     [-58.50561628287694, -34.63576240857734],
     [-58.505950073380916, -34.63603827866091],
     [-58.506217806057556, -34.63625903014895],
     [-58.50636013381318, -34.63633757141747],
     [-58.50649083313771, -34.63633759498291],
     [-58.50705001156467, -34.63633774504309],
     [-58.50767428153763, -34.63617540255301],
     [-58.50794398311002, -34.63609016131947],
     [-58.508228847302604, -34.63600005463793],
     [-58.50894055758591, -34.63573605250277],
     [-58.509376171489095, -34.63555018094071],
     [-58.51006903243795, -34.63526413699491],
     [-58.508996217592404, -34.63516539325417],
     [-58.50880356958439, -34.63514764919117],
     [-58.50862131726924, -34.63513201360231],
     [-58.5081619804297, -34.6350926783391],
     [-58.5077867328, -34.6350460567126],
     [-58.50807987214802, -34.63482545334483],
     [-58.508485166795374, -34.634511355786856],
     [-58.507654666878295, -34.63377257444312],
     [-58.507552293946915, -34.633681695923414]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_1',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 838.0,
   'VIVIEND': 403.0,
   'HOGARES': 329.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.064488644272491,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50436186155027, -34.627569677463626],
     [-58.50390182656412, -34.62792540026255],
     [-58.503554455837865, -34.6281940406035],
     [-58.50344187294764, -34.628281332549314],
     [-58.50391644241196, -34.62871124730236],
     [-58.504014800074046, -34.62879994719466],
     [-58.50475555767573, -34.629468080103344],
     [-58.50570298808769, -34.62877098316794],
     [-58.50655945154596, -34.62814081354075],
     [-58.50669221525059, -34.62804118738759],
     [-58.506576556555295, -34.62794320001178],
     [-58.50536112016039, -34.626803339282326],
     [-58.505268046035084, -34.6267160470658],
     [-58.50416071663695, -34.625675644316885],
     [-58.503126373370385, -34.6264662804346],
     [-58.50424143054993, -34.62746183025167],
     [-58.50436186155027, -34.627569677463626]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_10',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 801.0,
   'VIVIEND': 298.0,
   'HOGARES': 279.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.073415626474738,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500853088085485, -34.62955584283071],
     [-58.50073061186218, -34.62944313363003],
     [-58.500061726677586, -34.62882291243435],
     [-58.49990660946916, -34.62867908535293],
     [-58.498776311977004, -34.627622866261014],
     [-58.49864992747178, -34.62771910161651],
     [-58.49773376378044, -34.62731373076259],
     [-58.496493054454234, -34.626764780068065],
     [-58.49524477811862, -34.626212438405325],
     [-58.495170556008844, -34.6263785160445],
     [-58.4952875640141, -34.62648116183541],
     [-58.49624409186135, -34.62732034676157],
     [-58.49633800703953, -34.627402434311776],
     [-58.49690780847214, -34.627900308460724],
     [-58.49731824695501, -34.628258857812526],
     [-58.497611589942, -34.62851518491367],
     [-58.49773559223755, -34.62862353059152],
     [-58.498944017857376, -34.62968910224003],
     [-58.49974772029605, -34.63039788090208],
     [-58.500197816669846, -34.630794788960515],
     [-58.50030955525281, -34.63070940172756],
     [-58.501286061670555, -34.62995430159204],
     [-58.500853088085485, -34.62955584283071]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_2',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 899.0,
   'VIVIEND': 363.0,
   'HOGARES': 321.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.062455324561886,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50136593835887, -34.6256521958169],
     [-58.500909475366086, -34.62599959637579],
     [-58.50127995168265, -34.62632525739416],
     [-58.50221132225544, -34.62716679787096],
     [-58.502307630860756, -34.62725380967149],
     [-58.503028674222044, -34.62790702993827],
     [-58.50344187294764, -34.628281332549314],
     [-58.503554455837865, -34.6281940406035],
     [-58.50390182656412, -34.62792540026255],
     [-58.50436186155027, -34.627569677463626],
     [-58.50424143054993, -34.62746183025167],
     [-58.503126373370385, -34.6264662804346],
     [-58.50416071663695, -34.625675644316885],
     [-58.50406849721419, -34.62558891426286],
     [-58.50289071261031, -34.62447929764951],
     [-58.50273035880754, -34.62460019658621],
     [-58.50205011219563, -34.62512605665074],
     [-58.50182239629064, -34.62530211745171],
     [-58.50159689355577, -34.6254764165374],
     [-58.50148030901065, -34.62556518687417],
     [-58.50136593835887, -34.6256521958169]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_3',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 831.0,
   'VIVIEND': 349.0,
   'HOGARES': 303.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.071247805152655,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.499240854440245, -34.62389973586789],
     [-58.499064309369984, -34.6238226752134],
     [-58.49802276781393, -34.62336699097076],
     [-58.49793288214306, -34.62354032849166],
     [-58.49774989251875, -34.623934610333094],
     [-58.49755311285592, -34.624358473560775],
     [-58.49748842996563, -34.62450476101397],
     [-58.4985506877519, -34.6249691761192],
     [-58.49873217674586, -34.62504841916055],
     [-58.499824014933594, -34.62552499760106],
     [-58.49997184951961, -34.62558967142809],
     [-58.500909475366086, -34.62599959637579],
     [-58.50136593835887, -34.6256521958169],
     [-58.50148030901065, -34.62556518687417],
     [-58.50159689355577, -34.6254764165374],
     [-58.50182239629064, -34.62530211745171],
     [-58.50205011219563, -34.62512605665074],
     [-58.50273035880754, -34.62460019658621],
     [-58.50289071261031, -34.62447929764951],
     [-58.50209596572501, -34.624089412377586],
     [-58.50115296036617, -34.623618159496054],
     [-58.50097964682966, -34.623531382188645],
     [-58.500552789105214, -34.624330466668255],
     [-58.500497980679754, -34.62444851294844],
     [-58.499240854440245, -34.62389973586789]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_4',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 840.0,
   'VIVIEND': 360.0,
   'HOGARES': 310.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.047434509462357,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497599755115644, -34.621817449716694],
     [-58.4972553728542, -34.62209043777347],
     [-58.49706189102782, -34.62224380379496],
     [-58.49652027438116, -34.62267311428915],
     [-58.49677410752523, -34.622817622522504],
     [-58.4972642832249, -34.62303509236218],
     [-58.49802276781393, -34.62336699097076],
     [-58.499064309369984, -34.6238226752134],
     [-58.499240854440245, -34.62389973586789],
     [-58.500497980679754, -34.62444851294844],
     [-58.500552789105214, -34.624330466668255],
     [-58.50097964682966, -34.623531382188645],
     [-58.499668815084064, -34.62287494917288],
     [-58.49874270747214, -34.622411066871265],
     [-58.498571954904584, -34.62232506002284],
     [-58.497599755115644, -34.621817449716694]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_5',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 1001.0,
   'VIVIEND': 354.0,
   'HOGARES': 302.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.075211379719824,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49774989251875, -34.623934610333094],
     [-58.49793288214306, -34.62354032849166],
     [-58.49802276781393, -34.62336699097076],
     [-58.4972642832249, -34.62303509236218],
     [-58.49677410752523, -34.622817622522504],
     [-58.49652027438116, -34.62267311428915],
     [-58.49544392246631, -34.623526233119506],
     [-58.494906547297596, -34.6239521549103],
     [-58.49436678202958, -34.62437990592923],
     [-58.494325988565876, -34.624412240762396],
     [-58.49450978650787, -34.62452832083038],
     [-58.49469996029207, -34.62460820142198],
     [-58.49574917426165, -34.6250839120525],
     [-58.495910297888855, -34.625156897143476],
     [-58.49682438446279, -34.6255623528519],
     [-58.496989002339134, -34.62563427918631],
     [-58.49805825861676, -34.62610151344937],
     [-58.49823301869059, -34.6261788577424],
     [-58.49873217674586, -34.62504841916055],
     [-58.4985506877519, -34.6249691761192],
     [-58.49748842996563, -34.62450476101397],
     [-58.49755311285592, -34.624358473560775],
     [-58.49774989251875, -34.623934610333094]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_6',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 992.0,
   'VIVIEND': 384.0,
   'HOGARES': 343.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.070757909892976,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49977647686004, -34.62686178486486],
     [-58.501076965589945, -34.62785984228559],
     [-58.501190741738235, -34.62795410304657],
     [-58.501294205761454, -34.62803970491469],
     [-58.50191927856935, -34.628605426006914],
     [-58.5020035712916, -34.62868201926305],
     [-58.50233409584308, -34.62898261915664],
     [-58.50242759422751, -34.62906744863118],
     [-58.502544266943005, -34.62897677598513],
     [-58.50344187294764, -34.628281332549314],
     [-58.503028674222044, -34.62790702993827],
     [-58.502307630860756, -34.62725380967149],
     [-58.50221132225544, -34.62716679787096],
     [-58.50127995168265, -34.62632525739416],
     [-58.500909475366086, -34.62599959637579],
     [-58.49997184951961, -34.62558967142809],
     [-58.499824014933594, -34.62552499760106],
     [-58.49873217674586, -34.62504841916055],
     [-58.49823301869059, -34.6261788577424],
     [-58.499472197002895, -34.62672715744394],
     [-58.49977647686004, -34.62686178486486]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_7',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 885.0,
   'VIVIEND': 361.0,
   'HOGARES': 312.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.080951028096206,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500197816669846, -34.630794788960515],
     [-58.499695586212155, -34.63117818497075],
     [-58.49981627195374, -34.63128526187328],
     [-58.50093629577005, -34.63228119170894],
     [-58.501040541391895, -34.63220270764035],
     [-58.501450966848964, -34.63189975855466],
     [-58.501568753891824, -34.631812818953314],
     [-58.501905676639, -34.631564892175305],
     [-58.50257815351812, -34.63107016301635],
     [-58.503714600853215, -34.63023407491407],
     [-58.50475555767573, -34.629468080103344],
     [-58.504014800074046, -34.62879994719466],
     [-58.50391644241196, -34.62871124730236],
     [-58.50344187294764, -34.628281332549314],
     [-58.502544266943005, -34.62897677598513],
     [-58.50242759422751, -34.62906744863118],
     [-58.501400096968894, -34.62986609569692],
     [-58.501286061670555, -34.62995430159204],
     [-58.50030955525281, -34.63070940172756],
     [-58.500197816669846, -34.630794788960515]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_8',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 737.0,
   'VIVIEND': 300.0,
   'HOGARES': 259.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.064637528016403,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500061726677586, -34.62882291243435],
     [-58.50073061186218, -34.62944313363003],
     [-58.500853088085485, -34.62955584283071],
     [-58.501286061670555, -34.62995430159204],
     [-58.501400096968894, -34.62986609569692],
     [-58.50242759422751, -34.62906744863118],
     [-58.50233409584308, -34.62898261915664],
     [-58.5020035712916, -34.62868201926305],
     [-58.50191927856935, -34.628605426006914],
     [-58.501294205761454, -34.62803970491469],
     [-58.501190741738235, -34.62795410304657],
     [-58.501076965589945, -34.62785984228559],
     [-58.49977647686004, -34.62686178486486],
     [-58.499472197002895, -34.62672715744394],
     [-58.49823301869059, -34.6261788577424],
     [-58.498167484509175, -34.62632711760882],
     [-58.49773376378044, -34.62731373076259],
     [-58.49864992747178, -34.62771910161651],
     [-58.498776311977004, -34.627622866261014],
     [-58.49990660946916, -34.62867908535293],
     [-58.500061726677586, -34.62882291243435]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '10_9_9',
   'BARRIO': 'VELEZ SARSFIELD',
   'COMUNA': '10',
   'POBLACI': 685.0,
   'VIVIEND': 286.0,
   'HOGARES': 250.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.055058882618278,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49450978650787, -34.62452832083038],
     [-58.494325988565876, -34.624412240762396],
     [-58.4936004727708, -34.62498722085852],
     [-58.49401693445405, -34.6253544420261],
     [-58.494106073256205, -34.6254330818125],
     [-58.49417467443945, -34.62549355765086],
     [-58.494909781342805, -34.626148723922036],
     [-58.49497608298829, -34.62620779144577],
     [-58.495170556008844, -34.6263785160445],
     [-58.49524477811862, -34.626212438405325],
     [-58.496493054454234, -34.626764780068065],
     [-58.49773376378044, -34.62731373076259],
     [-58.498167484509175, -34.62632711760882],
     [-58.49823301869059, -34.6261788577424],
     [-58.49805825861676, -34.62610151344937],
     [-58.496989002339134, -34.62563427918631],
     [-58.49682438446279, -34.6255623528519],
     [-58.495910297888855, -34.625156897143476],
     [-58.49574917426165, -34.6250839120525],
     [-58.49469996029207, -34.62460820142198],
     [-58.49450978650787, -34.62452832083038]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 1032.0,
   'VIVIEND': 370.0,
   'HOGARES': 324.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.146151207494348,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.516581201086986, -34.5861805767645],
     [-58.516830613823934, -34.58593135033994],
     [-58.51485511537117, -34.58172069520468],
     [-58.51450360989429, -34.5817526677116],
     [-58.514502632622985, -34.581750561165585],
     [-58.51442741450824, -34.581757971726375],
     [-58.514368170363745, -34.58176252656889],
     [-58.51409526452839, -34.582006993761944],
     [-58.51397007138555, -34.582132134570045],
     [-58.51331956105476, -34.58284629097469],
     [-58.51321234708975, -34.582964083784546],
     [-58.512671086094386, -34.58356537265685],
     [-58.511866625703206, -34.58445916443322],
     [-58.511755834515476, -34.5845823095733],
     [-58.5112088487643, -34.58518570682035],
     [-58.512545675876, -34.58601053329962],
     [-58.5132036171509, -34.5852826456912],
     [-58.5145404645789, -34.58610597139248],
     [-58.51520787594872, -34.58651696011622],
     [-58.51586984210649, -34.5869246376209],
     [-58.516096443470126, -34.58668045037949],
     [-58.51609150143717, -34.58666990476968],
     [-58.516581201086986, -34.5861805767645]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 822.0,
   'VIVIEND': 416.0,
   'HOGARES': 340.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.057996869404703,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5035156714517, -34.593689214745744],
     [-58.50287068627417, -34.594401199614346],
     [-58.50340521608675, -34.59472581587929],
     [-58.50452187007769, -34.594310714024104],
     [-58.50530960894209, -34.59401790208152],
     [-58.50565660037949, -34.59388882316717],
     [-58.50565673337721, -34.59388890528047],
     [-58.5059440872259, -34.59378211210492],
     [-58.50679226601168, -34.59346624063345],
     [-58.50616104317236, -34.59307603885417],
     [-58.506810839310916, -34.59235523176864],
     [-58.50547073075361, -34.5915294994183],
     [-58.50482109848823, -34.59224776416307],
     [-58.50468364704696, -34.59239978559668],
     [-58.50416745443454, -34.5929696183339],
     [-58.5035156714517, -34.593689214745744]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 895.0,
   'VIVIEND': 494.0,
   'HOGARES': 402.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.054857033994794,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50294262942293, -34.59489773232973],
     [-58.502942622762966, -34.594897757185244],
     [-58.50258006055381, -34.595029855318174],
     [-58.50417780168653, -34.59526812924604],
     [-58.50449088394252, -34.595324976584635],
     [-58.50602257394016, -34.595530489603995],
     [-58.50665400096979, -34.595627589123914],
     [-58.507851706476636, -34.595811872760805],
     [-58.50902604069856, -34.59598066639874],
     [-58.50865820916911, -34.59576119296187],
     [-58.50867398711137, -34.59576353688922],
     [-58.50818192958301, -34.595447449194516],
     [-58.50684507928729, -34.5946222945571],
     [-58.50565673337721, -34.59388890528047],
     [-58.50565660037949, -34.59388882316717],
     [-58.50530960894209, -34.59401790208152],
     [-58.50452187007769, -34.594310714024104],
     [-58.50340521608675, -34.59472581587929],
     [-58.50287068627417, -34.594401199614346],
     [-58.502482396164424, -34.594829854094186],
     [-58.50294262942293, -34.59489773232973]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_12',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 676.0,
   'VIVIEND': 353.0,
   'HOGARES': 266.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.123706947181657,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51105885456976, -34.59627607302038],
     [-58.51104461229399, -34.59618024923],
     [-58.51104361763376, -34.59614086589046],
     [-58.510995651317586, -34.596061560398034],
     [-58.510994603404285, -34.59605982782028],
     [-58.510778007803204, -34.594820952122134],
     [-58.510727768747834, -34.594533503004705],
     [-58.51056020625042, -34.593546864478924],
     [-58.5104572438753, -34.59294034670079],
     [-58.51032540303775, -34.59216383754809],
     [-58.51007261916876, -34.5922445709282],
     [-58.509060742311384, -34.592621373514405],
     [-58.50844841829943, -34.59284942483794],
     [-58.507927701901124, -34.5930434245839],
     [-58.50679226601168, -34.59346624063345],
     [-58.5059440872259, -34.59378211210492],
     [-58.50565673337721, -34.59388890528047],
     [-58.50684507928729, -34.5946222945571],
     [-58.50818192958301, -34.595447449194516],
     [-58.50867398711137, -34.59576353688922],
     [-58.50865820916911, -34.59576119296187],
     [-58.50902604069856, -34.59598066639874],
     [-58.50905043253543, -34.595984172247014],
     [-58.5094831975329, -34.59625189819385],
     [-58.51107777261917, -34.59644430731789],
     [-58.51105885456976, -34.59627607302038]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 933.0,
   'VIVIEND': 392.0,
   'HOGARES': 339.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.12480164842996,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.518280721403606, -34.58979345848113],
     [-58.518601368360656, -34.589705214997124],
     [-58.516830613823934, -34.58593135033994],
     [-58.516581201086986, -34.5861805767645],
     [-58.51609150143717, -34.58666990476968],
     [-58.516096443470126, -34.58668045037949],
     [-58.51586984210649, -34.5869246376209],
     [-58.51521565936537, -34.58765493218715],
     [-58.5151136337516, -34.58776885104365],
     [-58.51456359167828, -34.58838148981394],
     [-58.51398001408039, -34.589031464654866],
     [-58.5139332117545, -34.58908359778084],
     [-58.51391406534341, -34.58910494416988],
     [-58.51387875083188, -34.58914432578031],
     [-58.51465907638613, -34.5907528935164],
     [-58.514771089020336, -34.59080693108774],
     [-58.51606598084825, -34.590443267687334],
     [-58.51721270539085, -34.590098952870214],
     [-58.517284503014245, -34.590118005571505],
     [-58.51766916139263, -34.5900127609146],
     [-58.51764920659013, -34.589969177696396],
     [-58.517648416961414, -34.589967468487885],
     [-58.518280721403606, -34.58979345848113]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 720.0,
   'VIVIEND': 287.0,
   'HOGARES': 247.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.070361933582187,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51520787594872, -34.58651696011622],
     [-58.5145404645789, -34.58610597139248],
     [-58.5132036171509, -34.5852826456912],
     [-58.512545675876, -34.58601053329962],
     [-58.511890446135666, -34.586735317546136],
     [-58.512805562282956, -34.587300447022486],
     [-58.51307874512046, -34.58746913999056],
     [-58.51323071232905, -34.587562529313736],
     [-58.51315616932797, -34.587645237489525],
     [-58.51383535442096, -34.58905730039444],
     [-58.51391406534341, -34.58910494416988],
     [-58.5139332117545, -34.58908359778084],
     [-58.51398001408039, -34.589031464654866],
     [-58.51456359167828, -34.58838148981394],
     [-58.5151136337516, -34.58776885104365],
     [-58.51521565936537, -34.58765493218715],
     [-58.51586984210649, -34.5869246376209],
     [-58.51520787594872, -34.58651696011622]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 846.0,
   'VIVIEND': 371.0,
   'HOGARES': 316.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.065403384785533,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50918694321219, -34.58741983861876],
     [-58.50842053148016, -34.588267465175754],
     [-58.509757636999424, -34.589094223099366],
     [-58.510524723541224, -34.5882458837628],
     [-58.511126876447044, -34.587580002242085],
     [-58.51122882277863, -34.587467213522096],
     [-58.511890446135666, -34.586735317546136],
     [-58.512545675876, -34.58601053329962],
     [-58.5112088487643, -34.58518570682035],
     [-58.510553017136736, -34.58590928702458],
     [-58.51043924315851, -34.58603475609145],
     [-58.50989138834414, -34.5866407533122],
     [-58.50918694321219, -34.58741983861876]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 587.0,
   'VIVIEND': 268.0,
   'HOGARES': 221.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.050230599603802,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.512805562282956, -34.587300447022486],
     [-58.511890446135666, -34.586735317546136],
     [-58.51122882277863, -34.587467213522096],
     [-58.511126876447044, -34.587580002242085],
     [-58.510524723541224, -34.5882458837628],
     [-58.509757636999424, -34.589094223099366],
     [-58.51053740736923, -34.58957632162326],
     [-58.51110158378552, -34.58992518895176],
     [-58.511206596881216, -34.58980951170875],
     [-58.511867982103254, -34.58907522182082],
     [-58.512571988950846, -34.588293727032344],
     [-58.51267691234128, -34.58817727387173],
     [-58.51315616932797, -34.587645237489525],
     [-58.51323071232905, -34.587562529313736],
     [-58.51307874512046, -34.58746913999056],
     [-58.512805562282956, -34.587300447022486]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 802.0,
   'VIVIEND': 322.0,
   'HOGARES': 278.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.065957130872637,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51288912680731, -34.591033849717604],
     [-58.5132785186718, -34.59127594607613],
     [-58.514228084834905, -34.59099357280206],
     [-58.514771089020336, -34.59080693108774],
     [-58.51465907638613, -34.5907528935164],
     [-58.51387875083188, -34.58914432578031],
     [-58.51391406534341, -34.58910494416988],
     [-58.51383535442096, -34.58905730039444],
     [-58.51315616932797, -34.587645237489525],
     [-58.51267691234128, -34.58817727387173],
     [-58.512571988950846, -34.588293727032344],
     [-58.511867982103254, -34.58907522182082],
     [-58.511206596881216, -34.58980951170875],
     [-58.51110158378552, -34.58992518895176],
     [-58.51161235360685, -34.59024097597805],
     [-58.51176662456161, -34.590336338017366],
     [-58.51188733270493, -34.59041100885634],
     [-58.51243073602132, -34.59074889227847],
     [-58.51288912680731, -34.591033849717604]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 720.0,
   'VIVIEND': 336.0,
   'HOGARES': 252.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.05519935443306,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.509585670070884, -34.59159608743817],
     [-58.510176092481565, -34.591959315247486],
     [-58.5104327658049, -34.592129569744976],
     [-58.510772562813194, -34.59202105448389],
     [-58.511832318659444, -34.59170597988271],
     [-58.5132785186718, -34.59127594607613],
     [-58.51288912680731, -34.591033849717604],
     [-58.51243073602132, -34.59074889227847],
     [-58.51188733270493, -34.59041100885634],
     [-58.51176662456161, -34.590336338017366],
     [-58.51161235360685, -34.59024097597805],
     [-58.51110158378552, -34.58992518895176],
     [-58.51053740736923, -34.58957632162326],
     [-58.50975924399208, -34.59043417231558],
     [-58.50902055267209, -34.59124848118146],
     [-58.509585670070884, -34.59159608743817]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 675.0,
   'VIVIEND': 367.0,
   'HOGARES': 295.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.056259870378494,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50975924399208, -34.59043417231558],
     [-58.51053740736923, -34.58957632162326],
     [-58.509757636999424, -34.589094223099366],
     [-58.50842053148016, -34.588267465175754],
     [-58.50764270038257, -34.58912762641587],
     [-58.506902894956106, -34.589945725927315],
     [-58.5082423952098, -34.5907697528316],
     [-58.50902055267209, -34.59124848118146],
     [-58.50975924399208, -34.59043417231558]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_1_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 781.0,
   'VIVIEND': 401.0,
   'HOGARES': 304.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.085065493754387,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5082423952098, -34.5907697528316],
     [-58.506902894956106, -34.589945725927315],
     [-58.506122564518236, -34.59080862467853],
     [-58.50547073075361, -34.5915294994183],
     [-58.506810839310916, -34.59235523176864],
     [-58.50616104317236, -34.59307603885417],
     [-58.50679226601168, -34.59346624063345],
     [-58.507927701901124, -34.5930434245839],
     [-58.50844841829943, -34.59284942483794],
     [-58.509060742311384, -34.592621373514405],
     [-58.51007261916876, -34.5922445709282],
     [-58.51032540303775, -34.59216383754809],
     [-58.5104327658049, -34.592129569744976],
     [-58.510176092481565, -34.591959315247486],
     [-58.509585670070884, -34.59159608743817],
     [-58.50902055267209, -34.59124848118146],
     [-58.5082423952098, -34.5907697528316]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 724.0,
   'VIVIEND': 372.0,
   'HOGARES': 315.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.040926467751384,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49411493369235, -34.59739521862879],
     [-58.492816927550265, -34.59748089919308],
     [-58.49230809700275, -34.59751496785063],
     [-58.492158034207954, -34.5977352889208],
     [-58.49211714706273, -34.59779529665144],
     [-58.491428307328675, -34.598806252318916],
     [-58.49090643009529, -34.59957230001231],
     [-58.49200348764627, -34.600225289755805],
     [-58.492090485229305, -34.60010949262392],
     [-58.49256087981582, -34.59948035581619],
     [-58.493339407314984, -34.59843916266494],
     [-58.49411493369235, -34.59739521862879]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_10',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 713.0,
   'VIVIEND': 324.0,
   'HOGARES': 281.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.105051870544553,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48017995222376, -34.59927859981578],
     [-58.47972206680697, -34.59947592076126],
     [-58.47914700324388, -34.599723679053184],
     [-58.478231050141815, -34.60011831146326],
     [-58.47794260919942, -34.600182362785304],
     [-58.477128294689145, -34.60035830923443],
     [-58.476664162833394, -34.60045857585078],
     [-58.47631457287509, -34.60053410933141],
     [-58.47579218805462, -34.600646914493815],
     [-58.4755045096061, -34.600709058531585],
     [-58.47580321038179, -34.60064776078701],
     [-58.475855603720255, -34.60068626116941],
     [-58.476131857723814, -34.60083899283026],
     [-58.476401841150846, -34.600894879054145],
     [-58.47742940216041, -34.60095883687855],
     [-58.47852597927074, -34.60103722958339],
     [-58.47851663456732, -34.60116124653605],
     [-58.47860163612837, -34.60119370071015],
     [-58.47932092246383, -34.601075715954394],
     [-58.47981650758959, -34.60110684504141],
     [-58.48025639449227, -34.60113685336648],
     [-58.48102119374823, -34.60118892472352],
     [-58.48124902387064, -34.60124191917816],
     [-58.481441152457634, -34.60121773456845],
     [-58.483205646282656, -34.601337874937585],
     [-58.48377907804568, -34.601376862250284],
     [-58.48400424034409, -34.60131259693848],
     [-58.484020371431605, -34.6011152675475],
     [-58.48407358383747, -34.60105229965124],
     [-58.48298634108047, -34.6009750898543],
     [-58.48282017708521, -34.60094990576203],
     [-58.48253469766774, -34.600930163504536],
     [-58.48234247617435, -34.60091730710302],
     [-58.48274455070317, -34.6005978008135],
     [-58.48376097622954, -34.60017994792943],
     [-58.48325550064533, -34.59939495305685],
     [-58.482256035195206, -34.599835616276984],
     [-58.48181685595854, -34.5991503948518],
     [-58.48152702717114, -34.59869818019244],
     [-58.48017995222376, -34.59927859981578]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 956.0,
   'VIVIEND': 474.0,
   'HOGARES': 384.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.043570126925439,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48892613118399, -34.59774405461666],
     [-58.487943890559876, -34.597811445802556],
     [-58.48861177018226, -34.59820476195813],
     [-58.48975691886671, -34.5988879030922],
     [-58.48991526841213, -34.59898237621341],
     [-58.49090643009529, -34.59957230001231],
     [-58.491428307328675, -34.598806252318916],
     [-58.49211714706273, -34.59779529665144],
     [-58.492158034207954, -34.5977352889208],
     [-58.49230809700275, -34.59751496785063],
     [-58.491889193906815, -34.59754297927063],
     [-58.49061681797852, -34.597628396242214],
     [-58.4895855272527, -34.597697572442776],
     [-58.48892613118399, -34.59774405461666]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 715.0,
   'VIVIEND': 406.0,
   'HOGARES': 317.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.029121499061108,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49090643009529, -34.59957230001231],
     [-58.48991526841213, -34.59898237621341],
     [-58.48975691886671, -34.5988879030922],
     [-58.48861177018226, -34.59820476195813],
     [-58.48800568121033, -34.59909292952645],
     [-58.48915245473868, -34.59977445615424],
     [-58.490302483895924, -34.600457872620986],
     [-58.49080445391593, -34.59972190303657],
     [-58.49090643009529, -34.59957230001231]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 956.0,
   'VIVIEND': 428.0,
   'HOGARES': 364.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.048669218946427,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49008994934259, -34.60134962256971],
     [-58.49018985109016, -34.60135614948637],
     [-58.49100516242592, -34.60140962576409],
     [-58.49110693892659, -34.6014189684337],
     [-58.491357723163645, -34.601085032111136],
     [-58.49200348764627, -34.600225289755805],
     [-58.49090643009529, -34.59957230001231],
     [-58.49080445391593, -34.59972190303657],
     [-58.490302483895924, -34.600457872620986],
     [-58.48915245473868, -34.59977445615424],
     [-58.48905030492667, -34.599924339439966],
     [-58.488666133201114, -34.60048795052041],
     [-58.48810889192123, -34.601305332277086],
     [-58.487670874970334, -34.60127535187967],
     [-58.487804182845586, -34.60135300161528],
     [-58.4883830740903, -34.60169013913588],
     [-58.48941420427164, -34.60176027078468],
     [-58.48947277114508, -34.60167441174207],
     [-58.489597821249376, -34.60149114237513],
     [-58.48965247193149, -34.60141091798341],
     [-58.48971129372106, -34.601324777071284],
     [-58.49008994934259, -34.60134962256971]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 942.0,
   'VIVIEND': 496.0,
   'HOGARES': 386.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.039120324290812,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48800568121033, -34.59909292952645],
     [-58.4870508317058, -34.59852543996949],
     [-58.48686062973138, -34.59841160296988],
     [-58.48637480700855, -34.5991233276807],
     [-58.48751969413312, -34.59980522213629],
     [-58.48684479760154, -34.600794244107426],
     [-58.487670874970334, -34.60127535187967],
     [-58.48810889192123, -34.601305332277086],
     [-58.488666133201114, -34.60048795052041],
     [-58.48905030492667, -34.599924339439966],
     [-58.48915245473868, -34.59977445615424],
     [-58.48800568121033, -34.59909292952645]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 982.0,
   'VIVIEND': 570.0,
   'HOGARES': 458.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.027530948831677,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48719771397446, -34.59786378170941],
     [-58.486753090377185, -34.59789492693103],
     [-58.48654282890068, -34.59791039094506],
     [-58.48608057699841, -34.59794442452326],
     [-58.48588641063912, -34.59795868712147],
     [-58.485530013008095, -34.597984881444376],
     [-58.48522082471629, -34.598436071894916],
     [-58.48637480700855, -34.5991233276807],
     [-58.48686062973138, -34.59841160296988],
     [-58.4870508317058, -34.59852543996949],
     [-58.48800568121033, -34.59909292952645],
     [-58.48861177018226, -34.59820476195813],
     [-58.487943890559876, -34.597811445802556],
     [-58.48719771397446, -34.59786378170941]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 982.0,
   'VIVIEND': 417.0,
   'HOGARES': 401.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.032812025629699,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48751969413312, -34.59980522213629],
     [-58.48637480700855, -34.5991233276807],
     [-58.48522082471629, -34.598436071894916],
     [-58.4845320344736, -34.599441140421156],
     [-58.48492214594709, -34.59966860830472],
     [-58.4856949647664, -34.60011924586621],
     [-58.485911999469614, -34.60024575577606],
     [-58.48666455763258, -34.60068934865609],
     [-58.48684479760154, -34.600794244107426],
     [-58.48751969413312, -34.59980522213629]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 748.0,
   'VIVIEND': 406.0,
   'HOGARES': 318.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.05101544847095,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48243662698468, -34.59821873407769],
     [-58.482314877218506, -34.59835868521961],
     [-58.48152702717114, -34.59869818019244],
     [-58.48181685595854, -34.5991503948518],
     [-58.482256035195206, -34.599835616276984],
     [-58.48325550064533, -34.59939495305685],
     [-58.48376097622954, -34.60017994792943],
     [-58.48492214594709, -34.59966860830472],
     [-58.4845320344736, -34.599441140421156],
     [-58.48522082471629, -34.598436071894916],
     [-58.485530013008095, -34.597984881444376],
     [-58.48425469441359, -34.5980820914237],
     [-58.48425302700984, -34.59808222770006],
     [-58.48243662698468, -34.59821873407769]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_10_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 757.0,
   'VIVIEND': 401.0,
   'HOGARES': 319.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.05517538836205,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48684479760154, -34.600794244107426],
     [-58.48666455763258, -34.60068934865609],
     [-58.485911999469614, -34.60024575577606],
     [-58.4856949647664, -34.60011924586621],
     [-58.48492214594709, -34.59966860830472],
     [-58.48376097622954, -34.60017994792943],
     [-58.48274455070317, -34.6005978008135],
     [-58.48234247617435, -34.60091730710302],
     [-58.48253469766774, -34.600930163504536],
     [-58.48282017708521, -34.60094990576203],
     [-58.48298634108047, -34.6009750898543],
     [-58.48407358383747, -34.60105229965124],
     [-58.484020371431605, -34.6011152675475],
     [-58.48400424034409, -34.60131259693848],
     [-58.48377907804568, -34.601376862250284],
     [-58.485772253716, -34.60151248936689],
     [-58.48781491842492, -34.60165145407078],
     [-58.4883830740903, -34.60169013913588],
     [-58.487804182845586, -34.60135300161528],
     [-58.487670874970334, -34.60127535187967],
     [-58.48684479760154, -34.600794244107426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 827.0,
   'VIVIEND': 295.0,
   'HOGARES': 293.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.072217060114264,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48025639449227, -34.60113685336648],
     [-58.47981650758959, -34.60110684504141],
     [-58.47932092246383, -34.601075715954394],
     [-58.47999074637307, -34.601468867552555],
     [-58.48046790609727, -34.601749084412766],
     [-58.48067446051097, -34.601870323370925],
     [-58.481132204046844, -34.60213800509623],
     [-58.4812918272222, -34.602231221543754],
     [-58.48198891762809, -34.60260027311468],
     [-58.482019420408, -34.60265611409078],
     [-58.482323427876956, -34.603212129170494],
     [-58.48321587685869, -34.60484453859109],
     [-58.4833595206111, -34.60469458286566],
     [-58.48409082815375, -34.60386902372976],
     [-58.4844178641472, -34.60349987668247],
     [-58.48452539992052, -34.60337936297527],
     [-58.484404498280135, -34.60319374832829],
     [-58.48389294975939, -34.602401856072184],
     [-58.483478026648214, -34.601759595020816],
     [-58.483270993449096, -34.601438992043875],
     [-58.483205646282656, -34.601337874937585],
     [-58.481441152457634, -34.60121773456845],
     [-58.48124902387064, -34.60124191917816],
     [-58.48102119374823, -34.60118892472352],
     [-58.48025639449227, -34.60113685336648]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 888.0,
   'VIVIEND': 361.0,
   'HOGARES': 309.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.072687865122393,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48321587685869, -34.60484453859109],
     [-58.482323427876956, -34.603212129170494],
     [-58.482019420408, -34.60265611409078],
     [-58.48198891762809, -34.60260027311468],
     [-58.4812918272222, -34.602231221543754],
     [-58.481193742361164, -34.60235433666052],
     [-58.48045077284037, -34.603280515449924],
     [-58.47986624530966, -34.60400898878989],
     [-58.47972532710232, -34.60418464459594],
     [-58.48098904267386, -34.60487503392927],
     [-58.48064479428393, -34.60530220314289],
     [-58.480548578133245, -34.60542313427841],
     [-58.48133919320404, -34.605721188837165],
     [-58.48212794408809, -34.60603606975106],
     [-58.482685921974706, -34.60542836634737],
     [-58.483054354891976, -34.60502696232871],
     [-58.48321587685869, -34.60484453859109]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 953.0,
   'VIVIEND': 332.0,
   'HOGARES': 325.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.063144590915203,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47932092246383, -34.601075715954394],
     [-58.47860163612837, -34.60119370071015],
     [-58.47847536595184, -34.60135562066681],
     [-58.47803788664703, -34.601916528955265],
     [-58.47745513939436, -34.60266358247931],
     [-58.47857094869091, -34.60328619705036],
     [-58.47986624530966, -34.60400898878989],
     [-58.48045077284037, -34.603280515449924],
     [-58.481193742361164, -34.60235433666052],
     [-58.4812918272222, -34.602231221543754],
     [-58.481132204046844, -34.60213800509623],
     [-58.48067446051097, -34.601870323370925],
     [-58.48046790609727, -34.601749084412766],
     [-58.47999074637307, -34.601468867552555],
     [-58.47932092246383, -34.601075715954394]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 294.0,
   'VIVIEND': 119.0,
   'HOGARES': 102.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.035766321411103,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47632436171967, -34.603110269111724],
     [-58.47687263718671, -34.603410492254184],
     [-58.47734759738129, -34.60280148456555],
     [-58.47745513939436, -34.60266358247931],
     [-58.47803788664703, -34.601916528955265],
     [-58.47847536595184, -34.60135562066681],
     [-58.47860163612837, -34.60119370071015],
     [-58.47851663456732, -34.60116124653605],
     [-58.47852597927074, -34.60103722958339],
     [-58.47742940216041, -34.60095883687855],
     [-58.476401841150846, -34.600894879054145],
     [-58.476131857723814, -34.60083899283026],
     [-58.47689859022152, -34.60127243294163],
     [-58.47637128263404, -34.602031235624246],
     [-58.47578145620755, -34.602813000699804],
     [-58.47632436171967, -34.603110269111724]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 952.0,
   'VIVIEND': 373.0,
   'HOGARES': 335.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.073587283465326,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479286220455606, -34.60473196560388],
     [-58.47972532710232, -34.60418464459594],
     [-58.47986624530966, -34.60400898878989],
     [-58.47857094869091, -34.60328619705036],
     [-58.47745513939436, -34.60266358247931],
     [-58.47734759738129, -34.60280148456555],
     [-58.47687263718671, -34.603410492254184],
     [-58.476540893748655, -34.603839057010234],
     [-58.4762071022224, -34.60426374777202],
     [-58.47714336774691, -34.604779280934856],
     [-58.47733024729192, -34.60488123180036],
     [-58.47668156619384, -34.60571765648015],
     [-58.47657384784066, -34.60585083946667],
     [-58.47726413487868, -34.6062251299157],
     [-58.47783841344543, -34.60653654277701],
     [-58.47860724142134, -34.60557826393349],
     [-58.479286220455606, -34.60473196560388]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1017.0,
   'VIVIEND': 417.0,
   'HOGARES': 396.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.044162164425194,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47972532710232, -34.60418464459594],
     [-58.479286220455606, -34.60473196560388],
     [-58.47860724142134, -34.60557826393349],
     [-58.479238250667734, -34.60592269141375],
     [-58.47972709902272, -34.60618952892758],
     [-58.479876165897075, -34.60627648095256],
     [-58.48062421169469, -34.6066241241686],
     [-58.481123111105376, -34.60685595414593],
     [-58.481299349409916, -34.60693860448847],
     [-58.48178615416941, -34.60640845229583],
     [-58.48212794408809, -34.60603606975106],
     [-58.48133919320404, -34.605721188837165],
     [-58.480548578133245, -34.60542313427841],
     [-58.48064479428393, -34.60530220314289],
     [-58.48098904267386, -34.60487503392927],
     [-58.47972532710232, -34.60418464459594]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 878.0,
   'VIVIEND': 345.0,
   'HOGARES': 305.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.072557879662335,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481299349409916, -34.60693860448847],
     [-58.481123111105376, -34.60685595414593],
     [-58.48062421169469, -34.6066241241686],
     [-58.479876165897075, -34.60627648095256],
     [-58.47972709902272, -34.60618952892758],
     [-58.479238250667734, -34.60592269141375],
     [-58.47860724142134, -34.60557826393349],
     [-58.47783841344543, -34.60653654277701],
     [-58.476864516580655, -34.607750195856035],
     [-58.47701817738002, -34.6078068687559],
     [-58.47812318372893, -34.60815089321165],
     [-58.47834481446429, -34.60820952768067],
     [-58.47860341244243, -34.60827794578506],
     [-58.4790689051566, -34.60839218138613],
     [-58.47920782920739, -34.60842624758976],
     [-58.47960645925816, -34.60852408151546],
     [-58.479809948312116, -34.60857391290803],
     [-58.479952578729126, -34.6084055809208],
     [-58.48039563201246, -34.60792304679661],
     [-58.480917445627185, -34.60735465316396],
     [-58.481299349409916, -34.60693860448847]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 867.0,
   'VIVIEND': 372.0,
   'HOGARES': 315.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.058500789021999,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.475450525003296, -34.605233559864075],
     [-58.4746185677943, -34.606299995425815],
     [-58.47451152745184, -34.60643803572863],
     [-58.474663656114544, -34.60652928965086],
     [-58.475601649173385, -34.60709786310559],
     [-58.475764513055346, -34.60719657939035],
     [-58.47629517896667, -34.60747370793079],
     [-58.476728743290224, -34.60770007008282],
     [-58.476864516580655, -34.607750195856035],
     [-58.47783841344543, -34.60653654277701],
     [-58.47726413487868, -34.6062251299157],
     [-58.47657384784066, -34.60585083946667],
     [-58.47668156619384, -34.60571765648015],
     [-58.47733024729192, -34.60488123180036],
     [-58.47714336774691, -34.604779280934856],
     [-58.4762071022224, -34.60426374777202],
     [-58.47605859818991, -34.604454118674916],
     [-58.475450525003296, -34.605233559864075]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_11_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 906.0,
   'VIVIEND': 313.0,
   'HOGARES': 296.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.048544746580213,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47374117680815, -34.60596007371665],
     [-58.474353862524865, -34.60634333139687],
     [-58.47451152745184, -34.60643803572863],
     [-58.4746185677943, -34.606299995425815],
     [-58.475450525003296, -34.605233559864075],
     [-58.47605859818991, -34.604454118674916],
     [-58.4762071022224, -34.60426374777202],
     [-58.476540893748655, -34.603839057010234],
     [-58.47687263718671, -34.603410492254184],
     [-58.47632436171967, -34.603110269111724],
     [-58.47578145620755, -34.602813000699804],
     [-58.47513617772186, -34.60361814907359],
     [-58.47510509709368, -34.603656955556644],
     [-58.474332329639815, -34.60462126942994],
     [-58.47341656570966, -34.605758339558335],
     [-58.47356221878509, -34.605848116541104],
     [-58.47374117680815, -34.60596007371665]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 580.0,
   'VIVIEND': 279.0,
   'HOGARES': 233.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.046280848590076,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49014021992669, -34.60271336163822],
     [-58.49071946783073, -34.60193836462073],
     [-58.489355211670706, -34.60184683412565],
     [-58.48941420427164, -34.60176027078468],
     [-58.4883830740903, -34.60169013913588],
     [-58.48781491842492, -34.60165145407078],
     [-58.485772253716, -34.60151248936689],
     [-58.48604738466649, -34.60167173491969],
     [-58.48720430897408, -34.60234116478459],
     [-58.48838152535066, -34.6030223400491],
     [-58.488590904922994, -34.603143494559575],
     [-58.4893989561536, -34.60361269269991],
     [-58.49014021992669, -34.60271336163822]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_10',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 604.0,
   'VIVIEND': 312.0,
   'HOGARES': 261.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.033768085652798,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48380167348201, -34.60821546657488],
     [-58.48282815642006, -34.609312756998655],
     [-58.483072961293274, -34.609372998778845],
     [-58.483456608898734, -34.60946744228698],
     [-58.48375397047674, -34.609540702071115],
     [-58.48405405831768, -34.609614594462776],
     [-58.48439264799516, -34.60969798643141],
     [-58.4850452956335, -34.60889807032135],
     [-58.48515632537725, -34.60876199195591],
     [-58.48576366383487, -34.60802468661155],
     [-58.4845581259094, -34.607361872246805],
     [-58.48443875001391, -34.60749731777585],
     [-58.48380167348201, -34.60821546657488]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 587.0,
   'VIVIEND': 263.0,
   'HOGARES': 236.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.032918317520499,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48838152535066, -34.6030223400491],
     [-58.48720430897408, -34.60234116478459],
     [-58.48604738466649, -34.60167173491969],
     [-58.48523599655048, -34.602582533274834],
     [-58.48639403544873, -34.60325647761553],
     [-58.48757151485828, -34.60394174509936],
     [-58.48838152535066, -34.6030223400491]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1009.0,
   'VIVIEND': 425.0,
   'HOGARES': 360.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.075541885663509,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48452539992052, -34.60337936297527],
     [-58.4844178641472, -34.60349987668247],
     [-58.48409082815375, -34.60386902372976],
     [-58.484844600484465, -34.60430804982852],
     [-58.48527135548786, -34.60452508708388],
     [-58.485413278521484, -34.604639850945055],
     [-58.48643394526466, -34.60523283322712],
     [-58.48757151485828, -34.60394174509936],
     [-58.48639403544873, -34.60325647761553],
     [-58.48523599655048, -34.602582533274834],
     [-58.48604738466649, -34.60167173491969],
     [-58.485772253716, -34.60151248936689],
     [-58.48377907804568, -34.601376862250284],
     [-58.483205646282656, -34.601337874937585],
     [-58.483270993449096, -34.601438992043875],
     [-58.483478026648214, -34.601759595020816],
     [-58.48389294975939, -34.602401856072184],
     [-58.484404498280135, -34.60319374832829],
     [-58.48452539992052, -34.60337936297527]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 622.0,
   'VIVIEND': 336.0,
   'HOGARES': 272.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.036034175900519,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4893989561536, -34.60361269269991],
     [-58.488590904922994, -34.603143494559575],
     [-58.48838152535066, -34.6030223400491],
     [-58.48757151485828, -34.60394174509936],
     [-58.48643394526466, -34.60523283322712],
     [-58.48753589320572, -34.6058730445063],
     [-58.48761933007476, -34.60577182903994],
     [-58.488623281054764, -34.60455378754134],
     [-58.4893989561536, -34.60361269269991]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 655.0,
   'VIVIEND': 289.0,
   'HOGARES': 245.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.037218538321674,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48558745011116, -34.606193640840374],
     [-58.4845581259094, -34.607361872246805],
     [-58.48576366383487, -34.60802468661155],
     [-58.48673667719487, -34.6068434279403],
     [-58.48753589320572, -34.6058730445063],
     [-58.48643394526466, -34.60523283322712],
     [-58.48558745011116, -34.606193640840374]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 881.0,
   'VIVIEND': 370.0,
   'HOGARES': 320.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.05690954208374,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48321587685869, -34.60484453859109],
     [-58.483054354891976, -34.60502696232871],
     [-58.482685921974706, -34.60542836634737],
     [-58.48212794408809, -34.60603606975106],
     [-58.48335124469384, -34.60670024331957],
     [-58.483852163926734, -34.60613282648853],
     [-58.48439403112363, -34.60551892081595],
     [-58.48558745011116, -34.606193640840374],
     [-58.48643394526466, -34.60523283322712],
     [-58.485413278521484, -34.604639850945055],
     [-58.48527135548786, -34.60452508708388],
     [-58.484844600484465, -34.60430804982852],
     [-58.48409082815375, -34.60386902372976],
     [-58.4833595206111, -34.60469458286566],
     [-58.48321587685869, -34.60484453859109]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 664.0,
   'VIVIEND': 289.0,
   'HOGARES': 259.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.036951409892738,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48439403112363, -34.60551892081595],
     [-58.483852163926734, -34.60613282648853],
     [-58.48335124469384, -34.60670024331957],
     [-58.48323799836341, -34.606828503463454],
     [-58.48297625324229, -34.60712488893899],
     [-58.48259691531523, -34.60755425245355],
     [-58.48380167348201, -34.60821546657488],
     [-58.48443875001391, -34.60749731777585],
     [-58.4845581259094, -34.607361872246805],
     [-58.48558745011116, -34.606193640840374],
     [-58.48439403112363, -34.60551892081595]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 756.0,
   'VIVIEND': 302.0,
   'HOGARES': 272.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.035821956830204,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.480917445627185, -34.60735465316396],
     [-58.48039563201246, -34.60792304679661],
     [-58.481664860375076, -34.60861124476973],
     [-58.48177521568842, -34.60848312742165],
     [-58.48212688837447, -34.60808574315532],
     [-58.48248375182139, -34.60768244144282],
     [-58.48259691531523, -34.60755425245355],
     [-58.48297625324229, -34.60712488893899],
     [-58.48323799836341, -34.606828503463454],
     [-58.48335124469384, -34.60670024331957],
     [-58.48212794408809, -34.60603606975106],
     [-58.48178615416941, -34.60640845229583],
     [-58.481299349409916, -34.60693860448847],
     [-58.480917445627185, -34.60735465316396]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_12_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 596.0,
   'VIVIEND': 299.0,
   'HOGARES': 240.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.032262934152901,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48039563201246, -34.60792304679661],
     [-58.479952578729126, -34.6084055809208],
     [-58.479809948312116, -34.60857391290803],
     [-58.480718539679266, -34.60879632001122],
     [-58.48136887479272, -34.60895460442688],
     [-58.4816132515178, -34.6090140745482],
     [-58.48282815642006, -34.609312756998655],
     [-58.48380167348201, -34.60821546657488],
     [-58.48259691531523, -34.60755425245355],
     [-58.48248375182139, -34.60768244144282],
     [-58.48212688837447, -34.60808574315532],
     [-58.48177521568842, -34.60848312742165],
     [-58.481664860375076, -34.60861124476973],
     [-58.48039563201246, -34.60792304679661]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 709.0,
   'VIVIEND': 429.0,
   'HOGARES': 346.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.063523710780561,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49403976360277, -34.602684182555684],
     [-58.49539176833015, -34.60348848614137],
     [-58.495930681393254, -34.60277037349683],
     [-58.49604006327625, -34.60262484880217],
     [-58.49634462822892, -34.60221997117077],
     [-58.49640548978191, -34.60213903781842],
     [-58.4965417680398, -34.60195751883749],
     [-58.49660399110028, -34.6018746835716],
     [-58.49474024632666, -34.601750326395944],
     [-58.49478127546746, -34.60169566700605],
     [-58.4944088213097, -34.60163738331025],
     [-58.49391560820394, -34.60136778860024],
     [-58.49376728205321, -34.60145606706306],
     [-58.4936781252308, -34.601488343679485],
     [-58.49359449336332, -34.601491533939374],
     [-58.493399628971126, -34.60147932943887],
     [-58.49327953215688, -34.601444640825605],
     [-58.49311836083154, -34.601342426232605],
     [-58.492970413996126, -34.60153943746865],
     [-58.49201695757734, -34.60147671169614],
     [-58.49110693892659, -34.6014189684337],
     [-58.49100516242592, -34.60140962576409],
     [-58.49018985109016, -34.60135614948637],
     [-58.49008994934259, -34.60134962256971],
     [-58.48971129372106, -34.601324777071284],
     [-58.48965247193149, -34.60141091798341],
     [-58.489597821249376, -34.60149114237513],
     [-58.48947277114508, -34.60167441174207],
     [-58.48941420427164, -34.60176027078468],
     [-58.489355211670706, -34.60184683412565],
     [-58.49071946783073, -34.60193836462073],
     [-58.49114381179923, -34.60196521678737],
     [-58.49118024263963, -34.60198752896891],
     [-58.49218725570677, -34.602585558503684],
     [-58.49251575808781, -34.602144346128426],
     [-58.49320601160258, -34.60219048542592],
     [-58.49403976360277, -34.602684182555684]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_10',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 656.0,
   'VIVIEND': 292.0,
   'HOGARES': 250.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.050441213718116,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48928529832057, -34.608286719756215],
     [-58.489151978965495, -34.60821217036225],
     [-58.488015406183145, -34.60756669936993],
     [-58.487026807037836, -34.6087180412656],
     [-58.48812163879377, -34.60931831823826],
     [-58.48828477496708, -34.60940927114239],
     [-58.48878882889984, -34.60884373507449],
     [-58.490050651145296, -34.60955015735067],
     [-58.490455083037496, -34.60911175091037],
     [-58.49055963891689, -34.6089992609401],
     [-58.49126597961831, -34.60823901799678],
     [-58.4913903711383, -34.608104902671805],
     [-58.4912348148165, -34.60801486763244],
     [-58.49010640386212, -34.60736554090495],
     [-58.48928529832057, -34.608286719756215]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_11',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 846.0,
   'VIVIEND': 399.0,
   'HOGARES': 336.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.050282786442339,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48828477496708, -34.60940927114239],
     [-58.48812163879377, -34.60931831823826],
     [-58.487026807037836, -34.6087180412656],
     [-58.48628706400308, -34.60957960531831],
     [-58.48587256961409, -34.61006229612592],
     [-58.487220556668845, -34.61038865623752],
     [-58.487382995212585, -34.6104210182309],
     [-58.487556592461466, -34.610455490435875],
     [-58.48805362854674, -34.61058320656705],
     [-58.48829660187793, -34.610756890269876],
     [-58.48854145052227, -34.61093198155361],
     [-58.48867375997215, -34.611033503941904],
     [-58.4891154161354, -34.61055791057945],
     [-58.48953492947113, -34.61010612355336],
     [-58.489949074210024, -34.60966025181485],
     [-58.490050651145296, -34.60955015735067],
     [-58.48878882889984, -34.60884373507449],
     [-58.48828477496708, -34.60940927114239]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 819.0,
   'VIVIEND': 454.0,
   'HOGARES': 387.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.026415026186168,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49320601160258, -34.60219048542592],
     [-58.49251575808781, -34.602144346128426],
     [-58.49218725570677, -34.602585558503684],
     [-58.49352024366864, -34.603376718255184],
     [-58.49472615612958, -34.6040924028294],
     [-58.49487285036767, -34.60417990057011],
     [-58.49539176833015, -34.60348848614137],
     [-58.49403976360277, -34.602684182555684],
     [-58.49320601160258, -34.60219048542592]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 717.0,
   'VIVIEND': 409.0,
   'HOGARES': 321.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.035910998905957,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49118024263963, -34.60198752896891],
     [-58.49114381179923, -34.60196521678737],
     [-58.49071946783073, -34.60193836462073],
     [-58.49014021992669, -34.60271336163822],
     [-58.4915017224042, -34.60350615675261],
     [-58.49283905769716, -34.60428485784907],
     [-58.49352024366864, -34.603376718255184],
     [-58.49218725570677, -34.602585558503684],
     [-58.49118024263963, -34.60198752896891]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 763.0,
   'VIVIEND': 447.0,
   'HOGARES': 345.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.036116805939972,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49283905769716, -34.60428485784907],
     [-58.49206892897847, -34.60516280329953],
     [-58.493407402752595, -34.605939877932634],
     [-58.49419686332717, -34.60507586299799],
     [-58.49478219206836, -34.60430070063472],
     [-58.49487285036767, -34.60417990057011],
     [-58.49472615612958, -34.6040924028294],
     [-58.49352024366864, -34.603376718255184],
     [-58.49283905769716, -34.60428485784907]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 892.0,
   'VIVIEND': 449.0,
   'HOGARES': 393.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.036275048390687,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49283905769716, -34.60428485784907],
     [-58.4915017224042, -34.60350615675261],
     [-58.49014021992669, -34.60271336163822],
     [-58.4893989561536, -34.60361269269991],
     [-58.49074121353471, -34.60439197909096],
     [-58.49206892897847, -34.60516280329953],
     [-58.49283905769716, -34.60428485784907]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 955.0,
   'VIVIEND': 436.0,
   'HOGARES': 373.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.081978191223085,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49125042140014, -34.606082516182134],
     [-58.49019316206128, -34.6072681258214],
     [-58.49010640386212, -34.60736554090495],
     [-58.4912348148165, -34.60801486763244],
     [-58.4913903711383, -34.608104902671805],
     [-58.49242592969244, -34.60698773966265],
     [-58.49256070490177, -34.606843831734025],
     [-58.493407402752595, -34.605939877932634],
     [-58.49206892897847, -34.60516280329953],
     [-58.49074121353471, -34.60439197909096],
     [-58.4893989561536, -34.60361269269991],
     [-58.488623281054764, -34.60455378754134],
     [-58.48994297260253, -34.6053217492118],
     [-58.49125042140014, -34.606082516182134]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 813.0,
   'VIVIEND': 356.0,
   'HOGARES': 299.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.043835944513142,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48882612058307, -34.6066225731477],
     [-58.488015406183145, -34.60756669936993],
     [-58.489151978965495, -34.60821217036225],
     [-58.48928529832057, -34.608286719756215],
     [-58.49010640386212, -34.60736554090495],
     [-58.49019316206128, -34.6072681258214],
     [-58.49125042140014, -34.606082516182134],
     [-58.48994297260253, -34.6053217492118],
     [-58.48882612058307, -34.6066225731477]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 712.0,
   'VIVIEND': 344.0,
   'HOGARES': 281.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.044444687001288,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48994297260253, -34.6053217492118],
     [-58.488623281054764, -34.60455378754134],
     [-58.48761933007476, -34.60577182903994],
     [-58.48753589320572, -34.6058730445063],
     [-58.48673667719487, -34.6068434279403],
     [-58.487874507154295, -34.60748672754132],
     [-58.488015406183145, -34.60756669936993],
     [-58.48882612058307, -34.6066225731477],
     [-58.48994297260253, -34.6053217492118]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_13_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 994.0,
   'VIVIEND': 460.0,
   'HOGARES': 371.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.050035246779501,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.488015406183145, -34.60756669936993],
     [-58.487874507154295, -34.60748672754132],
     [-58.48673667719487, -34.6068434279403],
     [-58.48576366383487, -34.60802468661155],
     [-58.48515632537725, -34.60876199195591],
     [-58.4850452956335, -34.60889807032135],
     [-58.48439264799516, -34.60969798643141],
     [-58.484562922658526, -34.6097399283691],
     [-58.484781239082444, -34.60979383335702],
     [-58.485135929330774, -34.60988137532411],
     [-58.48548619095045, -34.609967860735246],
     [-58.48568202090044, -34.610016204860294],
     [-58.48587256961409, -34.61006229612592],
     [-58.48628706400308, -34.60957960531831],
     [-58.487026807037836, -34.6087180412656],
     [-58.488015406183145, -34.60756669936993]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 972.0,
   'VIVIEND': 421.0,
   'HOGARES': 364.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.077304835436404,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49634099025236, -34.60903815641698],
     [-58.496171878334565, -34.6089334129383],
     [-58.49563908212003, -34.6086288359644],
     [-58.49537762574952, -34.60847714387409],
     [-58.49447464661611, -34.60966549523056],
     [-58.494373001173166, -34.60980446697468],
     [-58.49456016911064, -34.60990787017406],
     [-58.49525261595117, -34.61028557917922],
     [-58.49541439942643, -34.610377649667846],
     [-58.49646836871435, -34.61103948294182],
     [-58.49668203705704, -34.611155974269785],
     [-58.496565233945766, -34.61129938869791],
     [-58.49607383915775, -34.61190262968283],
     [-58.49596239703283, -34.6120383659055],
     [-58.49693202352881, -34.61259683649069],
     [-58.49755743930773, -34.61188566533457],
     [-58.49769867917753, -34.61172315823548],
     [-58.49784281312655, -34.611557410660964],
     [-58.49875026236303, -34.610527626848715],
     [-58.498607216303405, -34.61044217507009],
     [-58.4979141336606, -34.6100097663454],
     [-58.497709320912186, -34.609884260420685],
     [-58.497530323261564, -34.60977459204093],
     [-58.49634099025236, -34.60903815641698]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 819.0,
   'VIVIEND': 414.0,
   'HOGARES': 332.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.056837983839318,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.493342150738336, -34.60730012248471],
     [-58.49318736025706, -34.60720980803702],
     [-58.49274556540588, -34.606950266541226],
     [-58.49256070490177, -34.606843831734025],
     [-58.49242592969244, -34.60698773966265],
     [-58.4913903711383, -34.608104902671805],
     [-58.4915604101092, -34.60820338489342],
     [-58.49208160536839, -34.608508545886295],
     [-58.49221339526767, -34.60858471218247],
     [-58.49299008310824, -34.609033611749005],
     [-58.49316259510422, -34.609129907982826],
     [-58.494228685374736, -34.60972471467328],
     [-58.494373001173166, -34.60980446697468],
     [-58.49447464661611, -34.60966549523056],
     [-58.49537762574952, -34.60847714387409],
     [-58.49515126955501, -34.60834586467138],
     [-58.494454912011676, -34.60794364864237],
     [-58.4942893857132, -34.60784890172292],
     [-58.4941399608831, -34.60776344631748],
     [-58.493496856330694, -34.60739029590921],
     [-58.493342150738336, -34.60730012248471]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1008.0,
   'VIVIEND': 413.0,
   'HOGARES': 365.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.07244169732517,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492462286317426, -34.61005812005913],
     [-58.49261128655741, -34.61014047896215],
     [-58.493111365722335, -34.61042204880211],
     [-58.493227142621855, -34.610487231923734],
     [-58.493676193601715, -34.61073592447901],
     [-58.493855695465925, -34.610835316557505],
     [-58.49467006539231, -34.61129588590254],
     [-58.494848462925695, -34.611396755690336],
     [-58.49596239703283, -34.6120383659055],
     [-58.49607383915775, -34.61190262968283],
     [-58.496565233945766, -34.61129938869791],
     [-58.49668203705704, -34.611155974269785],
     [-58.49646836871435, -34.61103948294182],
     [-58.49541439942643, -34.610377649667846],
     [-58.49525261595117, -34.61028557917922],
     [-58.49456016911064, -34.60990787017406],
     [-58.494373001173166, -34.60980446697468],
     [-58.494228685374736, -34.60972471467328],
     [-58.49316259510422, -34.609129907982826],
     [-58.49299008310824, -34.609033611749005],
     [-58.49221339526767, -34.60858471218247],
     [-58.49208160536839, -34.608508545886295],
     [-58.4915604101092, -34.60820338489342],
     [-58.4913903711383, -34.608104902671805],
     [-58.49126597961831, -34.60823901799678],
     [-58.49055963891689, -34.6089992609401],
     [-58.490727718219816, -34.60909323765857],
     [-58.49142312651379, -34.60948392567643],
     [-58.49158567053454, -34.60957529684307],
     [-58.49189150479051, -34.60974254998847],
     [-58.49200813129168, -34.6098070298377],
     [-58.492462286317426, -34.61005812005913]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 699.0,
   'VIVIEND': 335.0,
   'HOGARES': 279.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.038026524475217,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4943068738955, -34.611743239242344],
     [-58.49406389269615, -34.61204253075346],
     [-58.49374820187572, -34.6124314892064],
     [-58.49395641903797, -34.61254904301846],
     [-58.494883185964504, -34.6130878222821],
     [-58.49503015099303, -34.613173418197796],
     [-58.495217585094615, -34.613282594971345],
     [-58.49554729890114, -34.613472086249196],
     [-58.49576719415332, -34.61359850714364],
     [-58.49595940149111, -34.61371099137175],
     [-58.496803039771684, -34.612743494003546],
     [-58.49693202352881, -34.61259683649069],
     [-58.49596239703283, -34.6120383659055],
     [-58.494848462925695, -34.611396755690336],
     [-58.49467006539231, -34.61129588590254],
     [-58.4943068738955, -34.611743239242344]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 970.0,
   'VIVIEND': 404.0,
   'HOGARES': 328.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.076721960360341,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49142312651379, -34.60948392567643],
     [-58.490727718219816, -34.60909323765857],
     [-58.49055963891689, -34.6089992609401],
     [-58.490455083037496, -34.60911175091037],
     [-58.490050651145296, -34.60955015735067],
     [-58.489949074210024, -34.60966025181485],
     [-58.48953492947113, -34.61010612355336],
     [-58.4891154161354, -34.61055791057945],
     [-58.49003189883827, -34.611067010455315],
     [-58.49043965151563, -34.610603039749066],
     [-58.49108310182441, -34.61095838888112],
     [-58.491584030817975, -34.61123510553426],
     [-58.49213181920144, -34.61153765419219],
     [-58.49279445248618, -34.6119035531129],
     [-58.49300590344858, -34.61202040352696],
     [-58.49354680089961, -34.612317806597176],
     [-58.49374820187572, -34.6124314892064],
     [-58.49406389269615, -34.61204253075346],
     [-58.4943068738955, -34.611743239242344],
     [-58.49467006539231, -34.61129588590254],
     [-58.493855695465925, -34.610835316557505],
     [-58.493676193601715, -34.61073592447901],
     [-58.493227142621855, -34.610487231923734],
     [-58.493111365722335, -34.61042204880211],
     [-58.49261128655741, -34.61014047896215],
     [-58.492462286317426, -34.61005812005913],
     [-58.49200813129168, -34.6098070298377],
     [-58.49189150479051, -34.60974254998847],
     [-58.49158567053454, -34.60957529684307],
     [-58.49142312651379, -34.60948392567643]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1045.0,
   'VIVIEND': 487.0,
   'HOGARES': 409.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.071615847417384,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49108310182441, -34.61095838888112],
     [-58.49043965151563, -34.610603039749066],
     [-58.49003189883827, -34.611067010455315],
     [-58.4891154161354, -34.61055791057945],
     [-58.48867375997215, -34.611033503941904],
     [-58.4895025543602, -34.61166938842425],
     [-58.48965369482908, -34.61178534238523],
     [-58.4900790871181, -34.612107504902994],
     [-58.49013071715992, -34.61214657826244],
     [-58.49062853213937, -34.61252351189896],
     [-58.49109866172485, -34.61287946377284],
     [-58.491664560617714, -34.61330792714594],
     [-58.49244391713457, -34.61395943710195],
     [-58.49270427916777, -34.61364077822021],
     [-58.493176223515945, -34.61309410576784],
     [-58.49374820187572, -34.6124314892064],
     [-58.49354680089961, -34.612317806597176],
     [-58.49300590344858, -34.61202040352696],
     [-58.49279445248618, -34.6119035531129],
     [-58.49213181920144, -34.61153765419219],
     [-58.491584030817975, -34.61123510553426],
     [-58.49108310182441, -34.61095838888112]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_14_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1649.0,
   'VIVIEND': 797.0,
   'HOGARES': 696.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.056307580901206,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49374820187572, -34.6124314892064],
     [-58.493176223515945, -34.61309410576784],
     [-58.49270427916777, -34.61364077822021],
     [-58.49244391713457, -34.61395943710195],
     [-58.49271495635708, -34.61419711985739],
     [-58.492837567837576, -34.61430469646386],
     [-58.493455397709184, -34.61483623831667],
     [-58.49400881838899, -34.615312299972125],
     [-58.49418468716406, -34.61546310143475],
     [-58.4949720224332, -34.6148381705194],
     [-58.49583867338466, -34.613849476482564],
     [-58.49595940149111, -34.61371099137175],
     [-58.49576719415332, -34.61359850714364],
     [-58.49554729890114, -34.613472086249196],
     [-58.495217585094615, -34.613282594971345],
     [-58.49503015099303, -34.613173418197796],
     [-58.494883185964504, -34.6130878222821],
     [-58.49395641903797, -34.61254904301846],
     [-58.49374820187572, -34.6124314892064]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_1',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 990.0,
   'VIVIEND': 437.0,
   'HOGARES': 349.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.07216385693711,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491304603179245, -34.616551357758134],
     [-58.491438036276094, -34.61666449663127],
     [-58.49203550892825, -34.617175345813266],
     [-58.49310908562114, -34.61631570750169],
     [-58.49322838948018, -34.61622018371418],
     [-58.49418468716406, -34.61546310143475],
     [-58.49400881838899, -34.615312299972125],
     [-58.493455397709184, -34.61483623831667],
     [-58.492837567837576, -34.61430469646386],
     [-58.49271495635708, -34.61419711985739],
     [-58.49244391713457, -34.61395943710195],
     [-58.491664560617714, -34.61330792714594],
     [-58.490605156884826, -34.6141957896768],
     [-58.49163092734457, -34.6150614054124],
     [-58.49109852718698, -34.61548590136737],
     [-58.4905569245335, -34.615917721095656],
     [-58.491304603179245, -34.616551357758134]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_10',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 917.0,
   'VIVIEND': 360.0,
   'HOGARES': 331.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.053824766669989,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48417899314463, -34.6121986169236],
     [-58.48543783344821, -34.61285931186964],
     [-58.48566415722903, -34.61257454791543],
     [-58.48585233341477, -34.612337608224536],
     [-58.48603897595874, -34.61210285165153],
     [-58.48623719730048, -34.61185330364737],
     [-58.484965253839164, -34.61121163353648],
     [-58.48462569742275, -34.61104042542412],
     [-58.48432728757237, -34.61088984311951],
     [-58.48402640840421, -34.610738063315566],
     [-58.483691370682884, -34.61056903492305],
     [-58.48340241983607, -34.61042323750508],
     [-58.483147629408414, -34.61029468740394],
     [-58.48289377680921, -34.610166629576206],
     [-58.48278439894555, -34.61011143570867],
     [-58.48237874793325, -34.60990628810676],
     [-58.481997275826906, -34.61038283356354],
     [-58.4818866651336, -34.610521021654236],
     [-58.48162099401951, -34.61085472904418],
     [-58.48212555108711, -34.611120779630944],
     [-58.482377021431454, -34.61125285355227],
     [-58.48262772586903, -34.611384434113866],
     [-58.48291506153891, -34.61153516324556],
     [-58.483549708244645, -34.61186829973979],
     [-58.48417899314463, -34.6121986169236]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_11',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1057.0,
   'VIVIEND': 429.0,
   'HOGARES': 434.0,
   'HOGARES_': 50.0,
   'AREA_KM': 0.072985468203396,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48543783344821, -34.61285931186964],
     [-58.48417899314463, -34.6121986169236],
     [-58.483549708244645, -34.61186829973979],
     [-58.48291506153891, -34.61153516324556],
     [-58.482514170718986, -34.61203685454276],
     [-58.482113105279424, -34.61254093890344],
     [-58.48321552761888, -34.61312048342891],
     [-58.48337721628754, -34.613205104981],
     [-58.4846515634921, -34.61384883327767],
     [-58.485901322282984, -34.614523961669754],
     [-58.486696864657965, -34.613522106412816],
     [-58.48750720322131, -34.612501580613575],
     [-58.486869642168685, -34.61217635273718],
     [-58.48623719730048, -34.61185330364737],
     [-58.48603897595874, -34.61210285165153],
     [-58.48585233341477, -34.612337608224536],
     [-58.48566415722903, -34.61257454791543],
     [-58.48543783344821, -34.61285931186964]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_2',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 914.0,
   'VIVIEND': 371.0,
   'HOGARES': 324.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.063464061399698,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.490605156884826, -34.6141957896768],
     [-58.49007156490655, -34.61462147867959],
     [-58.489534390854665, -34.61505005346379],
     [-58.488577972336, -34.615813085358425],
     [-58.48846079263843, -34.61590663230475],
     [-58.48948230352761, -34.61677444988394],
     [-58.49022751210955, -34.617410206299056],
     [-58.4909608881659, -34.61803574945903],
     [-58.49203550892825, -34.617175345813266],
     [-58.491438036276094, -34.61666449663127],
     [-58.491304603179245, -34.616551357758134],
     [-58.4905569245335, -34.615917721095656],
     [-58.49109852718698, -34.61548590136737],
     [-58.49163092734457, -34.6150614054124],
     [-58.490605156884826, -34.6141957896768]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_3',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1025.0,
   'VIVIEND': 416.0,
   'HOGARES': 368.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.075971722088087,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4900790871181, -34.612107504902994],
     [-58.48965369482908, -34.61178534238523],
     [-58.4895025543602, -34.61166938842425],
     [-58.489027984437286, -34.61231407666025],
     [-58.48847948702455, -34.61300448337248],
     [-58.48893824877916, -34.61325657153118],
     [-58.4890944932054, -34.613344637416894],
     [-58.488364883826996, -34.61426142310667],
     [-58.488276502072594, -34.614372710514516],
     [-58.487479352714445, -34.615376477685],
     [-58.48809530703163, -34.61570917156735],
     [-58.48846079263843, -34.61590663230475],
     [-58.488577972336, -34.615813085358425],
     [-58.489534390854665, -34.61505005346379],
     [-58.49007156490655, -34.61462147867959],
     [-58.490605156884826, -34.6141957896768],
     [-58.491664560617714, -34.61330792714594],
     [-58.49109866172485, -34.61287946377284],
     [-58.49062853213937, -34.61252351189896],
     [-58.49013071715992, -34.61214657826244],
     [-58.4900790871181, -34.612107504902994]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_4',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 972.0,
   'VIVIEND': 413.0,
   'HOGARES': 356.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.065959504706442,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.486696864657965, -34.613522106412816],
     [-58.485901322282984, -34.614523961669754],
     [-58.48641171017966, -34.614799711670855],
     [-58.48686076230646, -34.61504230230586],
     [-58.487479352714445, -34.615376477685],
     [-58.488276502072594, -34.614372710514516],
     [-58.488364883826996, -34.61426142310667],
     [-58.4890944932054, -34.613344637416894],
     [-58.48893824877916, -34.61325657153118],
     [-58.48847948702455, -34.61300448337248],
     [-58.489027984437286, -34.61231407666025],
     [-58.4895025543602, -34.61166938842425],
     [-58.48867375997215, -34.611033503941904],
     [-58.488167669371435, -34.611669674380686],
     [-58.48804787198302, -34.61182054614653],
     [-58.48750720322131, -34.612501580613575],
     [-58.486696864657965, -34.613522106412816]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_5',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 794.0,
   'VIVIEND': 384.0,
   'HOGARES': 329.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.027413643065512,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48867375997215, -34.611033503941904],
     [-58.48854145052227, -34.61093198155361],
     [-58.48829660187793, -34.610756890269876],
     [-58.48805362854674, -34.61058320656705],
     [-58.487556592461466, -34.610455490435875],
     [-58.487382995212585, -34.6104210182309],
     [-58.487075282522845, -34.610798549328564],
     [-58.48691103890717, -34.61100527459624],
     [-58.486749178531205, -34.61120897096181],
     [-58.4865856996025, -34.61141470970016],
     [-58.486422390140014, -34.6116201664863],
     [-58.48623719730048, -34.61185330364737],
     [-58.486869642168685, -34.61217635273718],
     [-58.48750720322131, -34.612501580613575],
     [-58.48804787198302, -34.61182054614653],
     [-58.488167669371435, -34.611669674380686],
     [-58.48867375997215, -34.611033503941904]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_6',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 887.0,
   'VIVIEND': 329.0,
   'HOGARES': 313.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.055461943036586,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48375397047674, -34.609540702071115],
     [-58.483456608898734, -34.60946744228698],
     [-58.483072961293274, -34.609372998778845],
     [-58.48282815642006, -34.609312756998655],
     [-58.48237874793325, -34.60990628810676],
     [-58.48278439894555, -34.61011143570867],
     [-58.48289377680921, -34.610166629576206],
     [-58.483147629408414, -34.61029468740394],
     [-58.48340241983607, -34.61042323750508],
     [-58.483691370682884, -34.61056903492305],
     [-58.48402640840421, -34.610738063315566],
     [-58.48432728757237, -34.61088984311951],
     [-58.48462569742275, -34.61104042542412],
     [-58.484965253839164, -34.61121163353648],
     [-58.48623719730048, -34.61185330364737],
     [-58.486422390140014, -34.6116201664863],
     [-58.4865856996025, -34.61141470970016],
     [-58.486749178531205, -34.61120897096181],
     [-58.48691103890717, -34.61100527459624],
     [-58.487075282522845, -34.610798549328564],
     [-58.487382995212585, -34.6104210182309],
     [-58.487220556668845, -34.61038865623752],
     [-58.48587256961409, -34.61006229612592],
     [-58.48568202090044, -34.610016204860294],
     [-58.48548619095045, -34.609967860735246],
     [-58.485135929330774, -34.60988137532411],
     [-58.484781239082444, -34.60979383335702],
     [-58.484562922658526, -34.6097399283691],
     [-58.48439264799516, -34.60969798643141],
     [-58.48405405831768, -34.609614594462776],
     [-58.48375397047674, -34.609540702071115]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_7',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 672.0,
   'VIVIEND': 367.0,
   'HOGARES': 281.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.037071688094467,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48237874793325, -34.60990628810676],
     [-58.48282815642006, -34.609312756998655],
     [-58.4816132515178, -34.6090140745482],
     [-58.48136887479272, -34.60895460442688],
     [-58.480718539679266, -34.60879632001122],
     [-58.479809948312116, -34.60857391290803],
     [-58.479442006808355, -34.60903333570101],
     [-58.47906392828406, -34.60950684338588],
     [-58.47921606536195, -34.60958717595972],
     [-58.48037354288156, -34.61019596469098],
     [-58.48074957320937, -34.60972386177282],
     [-58.481997275826906, -34.61038283356354],
     [-58.48237874793325, -34.60990628810676]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_8',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 843.0,
   'VIVIEND': 421.0,
   'HOGARES': 372.0,
   'HOGARES_': 45.0,
   'AREA_KM': 0.027142838613629,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48074957320937, -34.60972386177282],
     [-58.48037354288156, -34.61019596469098],
     [-58.47921606536195, -34.60958717595972],
     [-58.47906392828406, -34.60950684338588],
     [-58.47866081012718, -34.61001183238861],
     [-58.4799715365494, -34.610700676111875],
     [-58.48122103580677, -34.61135726108497],
     [-58.48162099401951, -34.61085472904418],
     [-58.4818866651336, -34.610521021654236],
     [-58.481997275826906, -34.61038283356354],
     [-58.48074957320937, -34.60972386177282]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_15_9',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 816.0,
   'VIVIEND': 418.0,
   'HOGARES': 337.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.037387153003022,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48212555108711, -34.611120779630944],
     [-58.48162099401951, -34.61085472904418],
     [-58.48122103580677, -34.61135726108497],
     [-58.4799715365494, -34.610700676111875],
     [-58.47866081012718, -34.61001183238861],
     [-58.47825921986308, -34.61051477754557],
     [-58.479570547221805, -34.6112041888292],
     [-58.48082005094607, -34.6118611299699],
     [-58.482113105279424, -34.61254093890344],
     [-58.482514170718986, -34.61203685454276],
     [-58.48291506153891, -34.61153516324556],
     [-58.48262772586903, -34.611384434113866],
     [-58.482377021431454, -34.61125285355227],
     [-58.48212555108711, -34.611120779630944]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_1',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 897.0,
   'VIVIEND': 374.0,
   'HOGARES': 319.0,
   'HOGARES_': 17.0,
   'AREA_KM': 0.073474068697155,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48303911528309, -34.61587800847038],
     [-58.48294885127544, -34.61599154585019],
     [-58.482239759300086, -34.61688329085116],
     [-58.48350325478948, -34.617543793222694],
     [-58.483908678517345, -34.61703329542791],
     [-58.48430634829373, -34.61653251603211],
     [-58.48470631241646, -34.61602884753039],
     [-58.48510490927664, -34.61552686808699],
     [-58.48550503405628, -34.61502298558562],
     [-58.485901322282984, -34.614523961669754],
     [-58.4846515634921, -34.61384883327767],
     [-58.48337721628754, -34.613205104981],
     [-58.48325664152685, -34.61335639467798],
     [-58.48257865656474, -34.61421024903843],
     [-58.483837685450226, -34.61487300251826],
     [-58.48303911528309, -34.61587800847038]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_10',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 666.0,
   'VIVIEND': 276.0,
   'HOGARES': 236.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.054901925685048,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.482239759300086, -34.61688329085116],
     [-58.48098164995429, -34.616221506891655],
     [-58.48083674034388, -34.61614526008679],
     [-58.47971478603015, -34.61555499274168],
     [-58.478913178761765, -34.61656243682134],
     [-58.48018013608006, -34.61722564927562],
     [-58.481442087179275, -34.617886243604055],
     [-58.48270499569441, -34.6185485148044],
     [-58.48278615104991, -34.61844688068571],
     [-58.483056014128096, -34.61810697322493],
     [-58.48350325478948, -34.617543793222694],
     [-58.482239759300086, -34.61688329085116]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_2',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 889.0,
   'VIVIEND': 486.0,
   'HOGARES': 359.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.054934640625417,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48131436601686, -34.61354473678231],
     [-58.48051424503481, -34.61455029005361],
     [-58.481780077723535, -34.61521595109511],
     [-58.48303911528309, -34.61587800847038],
     [-58.483837685450226, -34.61487300251826],
     [-58.48257865656474, -34.61421024903843],
     [-58.48325664152685, -34.61335639467798],
     [-58.48337721628754, -34.613205104981],
     [-58.48321552761888, -34.61312048342891],
     [-58.482113105279424, -34.61254093890344],
     [-58.48131436601686, -34.61354473678231]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_3',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 678.0,
   'VIVIEND': 331.0,
   'HOGARES': 267.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.037496956726551,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.482113105279424, -34.61254093890344],
     [-58.48082005094607, -34.6118611299699],
     [-58.480021643187335, -34.61286421521671],
     [-58.4792211724528, -34.61386990101811],
     [-58.4794267303779, -34.613978395354785],
     [-58.48051424503481, -34.61455029005361],
     [-58.48131436601686, -34.61354473678231],
     [-58.482113105279424, -34.61254093890344]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_4',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 667.0,
   'VIVIEND': 316.0,
   'HOGARES': 252.0,
   'HOGARES_': 13.0,
   'AREA_KM': 0.037060701428294,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48082005094607, -34.6118611299699],
     [-58.479570547221805, -34.6112041888292],
     [-58.47825921986308, -34.61051477754557],
     [-58.47746036784958, -34.611515311072154],
     [-58.47760731083712, -34.611593111012716],
     [-58.478772215730906, -34.6122064209188],
     [-58.480021643187335, -34.61286421521671],
     [-58.48082005094607, -34.6118611299699]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_5',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 769.0,
   'VIVIEND': 333.0,
   'HOGARES': 288.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.038100353867948,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47665936767472, -34.61251844511501],
     [-58.47656100837429, -34.612641697179484],
     [-58.475859796464086, -34.61352284120122],
     [-58.47701125660615, -34.614132718431144],
     [-58.47717089653864, -34.614216714625584],
     [-58.47797207674216, -34.61321097181792],
     [-58.478772215730906, -34.6122064209188],
     [-58.47760731083712, -34.611593111012716],
     [-58.47746036784958, -34.611515311072154],
     [-58.47665936767472, -34.61251844511501]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_6',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 810.0,
   'VIVIEND': 387.0,
   'HOGARES': 335.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.019026690052211,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47717089653864, -34.614216714625584],
     [-58.47701125660615, -34.614132718431144],
     [-58.475859796464086, -34.61352284120122],
     [-58.475060546681505, -34.61452702058054],
     [-58.47637157060411, -34.61522019825374],
     [-58.47717089653864, -34.614216714625584]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_7',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 838.0,
   'VIVIEND': 425.0,
   'HOGARES': 350.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.054422177991986,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47797207674216, -34.61321097181792],
     [-58.47717089653864, -34.614216714625584],
     [-58.47637157060411, -34.61522019825374],
     [-58.477401323197235, -34.615764661955836],
     [-58.47762068402854, -34.615880552084185],
     [-58.47842144884566, -34.6148745953808],
     [-58.4792211724528, -34.61386990101811],
     [-58.480021643187335, -34.61286421521671],
     [-58.478772215730906, -34.6122064209188],
     [-58.47797207674216, -34.61321097181792]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_8',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1016.0,
   'VIVIEND': 458.0,
   'HOGARES': 393.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.037550506878972,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47842144884566, -34.6148745953808],
     [-58.47762068402854, -34.615880552084185],
     [-58.47830994951809, -34.616244554308395],
     [-58.478757195828884, -34.61648076642767],
     [-58.478913178761765, -34.61656243682134],
     [-58.47971478603015, -34.61555499274168],
     [-58.48051424503481, -34.61455029005361],
     [-58.4794267303779, -34.613978395354785],
     [-58.4792211724528, -34.61386990101811],
     [-58.47842144884566, -34.6148745953808]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_16_9',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 646.0,
   'VIVIEND': 358.0,
   'HOGARES': 256.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.036618482679725,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481780077723535, -34.61521595109511],
     [-58.48051424503481, -34.61455029005361],
     [-58.47971478603015, -34.61555499274168],
     [-58.48083674034388, -34.61614526008679],
     [-58.48098164995429, -34.616221506891655],
     [-58.482239759300086, -34.61688329085116],
     [-58.48294885127544, -34.61599154585019],
     [-58.48303911528309, -34.61587800847038],
     [-58.481780077723535, -34.61521595109511]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_1',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 821.0,
   'VIVIEND': 341.0,
   'HOGARES': 290.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.066390658225238,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4909608881659, -34.61803574945903],
     [-58.49022751210955, -34.617410206299056],
     [-58.48948230352761, -34.61677444988394],
     [-58.48846079263843, -34.61590663230475],
     [-58.48809530703163, -34.61570917156735],
     [-58.487479352714445, -34.615376477685],
     [-58.48686076230646, -34.61504230230586],
     [-58.48646277433604, -34.615543371901964],
     [-58.48606469642248, -34.61604451059986],
     [-58.487390834424204, -34.61676066560667],
     [-58.48840655334813, -34.61763208483105],
     [-58.48915235757208, -34.61826749548219],
     [-58.4898879482809, -34.61889424171932],
     [-58.490015350011184, -34.61879273332988],
     [-58.4909608881659, -34.61803574945903]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_2',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 815.0,
   'VIVIEND': 329.0,
   'HOGARES': 286.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.055269474624366,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48550503405628, -34.61502298558562],
     [-58.48510490927664, -34.61552686808699],
     [-58.48470631241646, -34.61602884753039],
     [-58.48430634829373, -34.61653251603211],
     [-58.483908678517345, -34.61703329542791],
     [-58.48350325478948, -34.617543793222694],
     [-58.4844714853381, -34.618049967660816],
     [-58.485259965089924, -34.6184621526745],
     [-58.48577819139347, -34.618048389417275],
     [-58.486316170411165, -34.61761877487055],
     [-58.48526614195036, -34.61704974219946],
     [-58.48566567703991, -34.61654677490837],
     [-58.48606469642248, -34.61604451059986],
     [-58.48646277433604, -34.615543371901964],
     [-58.48686076230646, -34.61504230230586],
     [-58.48641171017966, -34.614799711670855],
     [-58.485901322282984, -34.614523961669754],
     [-58.48550503405628, -34.61502298558562]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_3',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 884.0,
   'VIVIEND': 378.0,
   'HOGARES': 336.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.075716472571909,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48915235757208, -34.61826749548219],
     [-58.48840655334813, -34.61763208483105],
     [-58.487390834424204, -34.61676066560667],
     [-58.48606469642248, -34.61604451059986],
     [-58.48566567703991, -34.61654677490837],
     [-58.48526614195036, -34.61704974219946],
     [-58.486316170411165, -34.61761877487055],
     [-58.487332399127524, -34.61848837181148],
     [-58.48807752157531, -34.619124493314416],
     [-58.48700300413975, -34.61998119980392],
     [-58.48712783132838, -34.62008793652567],
     [-58.48773663434825, -34.6206072549945],
     [-58.488811663634344, -34.619751246254324],
     [-58.4898879482809, -34.61889424171932],
     [-58.48915235757208, -34.61826749548219]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_4',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 933.0,
   'VIVIEND': 369.0,
   'HOGARES': 324.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.076745256242037,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485259965089924, -34.6184621526745],
     [-58.484659974414924, -34.618941281242044],
     [-58.4841819357376, -34.619322990035315],
     [-58.485181469491245, -34.62020295980718],
     [-58.48580321232527, -34.620732637749555],
     [-58.485927783272174, -34.620838389809236],
     [-58.48666345702694, -34.621463042511586],
     [-58.487603095133416, -34.62071355100894],
     [-58.48773663434825, -34.6206072549945],
     [-58.48712783132838, -34.62008793652567],
     [-58.48700300413975, -34.61998119980392],
     [-58.48807752157531, -34.619124493314416],
     [-58.487332399127524, -34.61848837181148],
     [-58.486316170411165, -34.61761877487055],
     [-58.48577819139347, -34.618048389417275],
     [-58.485259965089924, -34.6184621526745]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_5',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 838.0,
   'VIVIEND': 302.0,
   'HOGARES': 297.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.061303209723324,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.483056014128096, -34.61810697322493],
     [-58.48278615104991, -34.61844688068571],
     [-58.48270499569441, -34.6185485148044],
     [-58.481900244154204, -34.619556753184746],
     [-58.483100051516786, -34.62018677617303],
     [-58.48410622704578, -34.6210602041574],
     [-58.484217286756554, -34.62097159217754],
     [-58.485181469491245, -34.62020295980718],
     [-58.4841819357376, -34.619322990035315],
     [-58.484659974414924, -34.618941281242044],
     [-58.485259965089924, -34.6184621526745],
     [-58.4844714853381, -34.618049967660816],
     [-58.48350325478948, -34.617543793222694],
     [-58.483056014128096, -34.61810697322493]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_6',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1175.0,
   'VIVIEND': 470.0,
   'HOGARES': 408.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.08796430107528,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48269875047029, -34.62340835350346],
     [-58.4820539078999, -34.62392099766516],
     [-58.48282603695245, -34.62452890668138],
     [-58.48343766142145, -34.62403908126079],
     [-58.48436986174542, -34.62329250358593],
     [-58.48451192619101, -34.62317916730847],
     [-58.48558369975759, -34.62232431471772],
     [-58.48666345702694, -34.621463042511586],
     [-58.485927783272174, -34.620838389809236],
     [-58.48580321232527, -34.620732637749555],
     [-58.485181469491245, -34.62020295980718],
     [-58.484217286756554, -34.62097159217754],
     [-58.48410622704578, -34.6210602041574],
     [-58.48303087757558, -34.621918565702686],
     [-58.4819579759349, -34.62277487499106],
     [-58.48269875047029, -34.62340835350346]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_7',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 916.0,
   'VIVIEND': 376.0,
   'HOGARES': 331.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.063553470406711,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48109640961945, -34.62056238029346],
     [-58.48029400342141, -34.62156588903866],
     [-58.480944307187926, -34.62190798001575],
     [-58.4819579759349, -34.62277487499106],
     [-58.48303087757558, -34.621918565702686],
     [-58.48410622704578, -34.6210602041574],
     [-58.483100051516786, -34.62018677617303],
     [-58.481900244154204, -34.619556753184746],
     [-58.481771141469586, -34.619718535664745],
     [-58.48109640961945, -34.62056238029346]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_17_8',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 847.0,
   'VIVIEND': 341.0,
   'HOGARES': 322.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.065026399037719,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.480944307187926, -34.62190798001575],
     [-58.480217188616706, -34.62248837401736],
     [-58.479869595647365, -34.62276596136929],
     [-58.47877569748622, -34.62363921750392],
     [-58.47915524522783, -34.62380254874865],
     [-58.48013960560531, -34.624226148440584],
     [-58.481132666142926, -34.624653400849965],
     [-58.4811867667706, -34.624676702742626],
     [-58.48131984590456, -34.624733936564084],
     [-58.48214209242702, -34.62507662841338],
     [-58.48276752299201, -34.62457574775162],
     [-58.48282603695245, -34.62452890668138],
     [-58.4820539078999, -34.62392099766516],
     [-58.48269875047029, -34.62340835350346],
     [-58.4819579759349, -34.62277487499106],
     [-58.480944307187926, -34.62190798001575]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_1',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 854.0,
   'VIVIEND': 264.0,
   'HOGARES': 279.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.066867420086265,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47983280178203, -34.619899599798536],
     [-58.47903353787829, -34.620899297067155],
     [-58.478872916289795, -34.62110009513853],
     [-58.480217188616706, -34.62248837401736],
     [-58.480944307187926, -34.62190798001575],
     [-58.48029400342141, -34.62156588903866],
     [-58.48109640961945, -34.62056238029346],
     [-58.481771141469586, -34.619718535664745],
     [-58.481900244154204, -34.619556753184746],
     [-58.48270499569441, -34.6185485148044],
     [-58.481442087179275, -34.617886243604055],
     [-58.48133785276379, -34.61801738772035],
     [-58.48103928356669, -34.618390746760944],
     [-58.48063724137105, -34.61889355827625],
     [-58.480236471751276, -34.61939474850766],
     [-58.47983280178203, -34.619899599798536]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_2',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 813.0,
   'VIVIEND': 358.0,
   'HOGARES': 303.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.055561857321441,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48103928356669, -34.618390746760944],
     [-58.48133785276379, -34.61801738772035],
     [-58.481442087179275, -34.617886243604055],
     [-58.48018013608006, -34.61722564927562],
     [-58.478913178761765, -34.61656243682134],
     [-58.478757195828884, -34.61648076642767],
     [-58.47830994951809, -34.616244554308395],
     [-58.47762068402854, -34.615880552084185],
     [-58.47681683399362, -34.616890306582036],
     [-58.477009191936176, -34.61699232752143],
     [-58.47811138177415, -34.6175699459165],
     [-58.479375792409776, -34.61823253312493],
     [-58.48063724137105, -34.61889355827625],
     [-58.48103928356669, -34.618390746760944]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_3',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 880.0,
   'VIVIEND': 351.0,
   'HOGARES': 310.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.05539913099122,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47811138177415, -34.6175699459165],
     [-58.477009191936176, -34.61699232752143],
     [-58.47681683399362, -34.616890306582036],
     [-58.476018159619144, -34.61789364653396],
     [-58.47718160778531, -34.618508238758665],
     [-58.47731075773454, -34.618576040971234],
     [-58.4785723661002, -34.619238143768484],
     [-58.47983280178203, -34.619899599798536],
     [-58.480236471751276, -34.61939474850766],
     [-58.48063724137105, -34.61889355827625],
     [-58.479375792409776, -34.61823253312493],
     [-58.47811138177415, -34.6175699459165]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_4',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 903.0,
   'VIVIEND': 386.0,
   'HOGARES': 370.0,
   'HOGARES_': 38.0,
   'AREA_KM': 0.058230389009506,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47521537796319, -34.61890205199016],
     [-58.47602819512093, -34.61932518247816],
     [-58.476175474044844, -34.619315976924135],
     [-58.476470869162746, -34.61963104233379],
     [-58.476651970826886, -34.61972690469144],
     [-58.4775252799276, -34.620182862697305],
     [-58.47773059549315, -34.620290444304224],
     [-58.47803558804771, -34.62045019670295],
     [-58.47855964340459, -34.620870345221405],
     [-58.47856376736294, -34.620873369687835],
     [-58.478835548922326, -34.621146864344766],
     [-58.478872916289795, -34.62110009513853],
     [-58.47903353787829, -34.620899297067155],
     [-58.47983280178203, -34.619899599798536],
     [-58.4785723661002, -34.619238143768484],
     [-58.47731075773454, -34.618576040971234],
     [-58.47718160778531, -34.618508238758665],
     [-58.476018159619144, -34.61789364653396],
     [-58.475496089739885, -34.618549483971044],
     [-58.47521537796319, -34.61890205199016]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_5',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 804.0,
   'VIVIEND': 395.0,
   'HOGARES': 318.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.054548060653329,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47556873368307, -34.61622804309606],
     [-58.47476800652263, -34.61723320619607],
     [-58.47457331499686, -34.6174775941079],
     [-58.473967430386935, -34.61823808216878],
     [-58.475019609959766, -34.61879664828211],
     [-58.47521537796319, -34.61890205199016],
     [-58.475496089739885, -34.618549483971044],
     [-58.476018159619144, -34.61789364653396],
     [-58.47681683399362, -34.616890306582036],
     [-58.47762068402854, -34.615880552084185],
     [-58.477401323197235, -34.615764661955836],
     [-58.47637157060411, -34.61522019825374],
     [-58.47556873368307, -34.61622804309606]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_6',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1348.0,
   'VIVIEND': 704.0,
   'HOGARES': 521.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.057156608994424,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47345841235474, -34.61654001139626],
     [-58.47265944541913, -34.61754375198668],
     [-58.47282309142154, -34.6176305704273],
     [-58.47330551263883, -34.617886658921655],
     [-58.473967430386935, -34.61823808216878],
     [-58.47457331499686, -34.6174775941079],
     [-58.47476800652263, -34.61723320619607],
     [-58.47556873368307, -34.61622804309606],
     [-58.47637157060411, -34.61522019825374],
     [-58.475060546681505, -34.61452702058054],
     [-58.47425957435672, -34.61553344826866],
     [-58.47345841235474, -34.61654001139626]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_7',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 1009.0,
   'VIVIEND': 417.0,
   'HOGARES': 324.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.094922343837202,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.473967430386935, -34.61823808216878],
     [-58.47330551263883, -34.617886658921655],
     [-58.47282309142154, -34.6176305704273],
     [-58.47265944541913, -34.61754375198668],
     [-58.47186079995203, -34.618547205462775],
     [-58.47102108147794, -34.61960213575896],
     [-58.47218869109966, -34.62021994419278],
     [-58.47233411086908, -34.620295074406876],
     [-58.47358948548962, -34.62094434158883],
     [-58.474415643011014, -34.61990664884955],
     [-58.47553071910037, -34.62050168358547],
     [-58.47570519325344, -34.62059356745119],
     [-58.476470869162746, -34.61963104233379],
     [-58.476175474044844, -34.619315976924135],
     [-58.47602819512093, -34.61932518247816],
     [-58.47521537796319, -34.61890205199016],
     [-58.475019609959766, -34.61879664828211],
     [-58.473967430386935, -34.61823808216878]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_8',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 907.0,
   'VIVIEND': 366.0,
   'HOGARES': 346.0,
   'HOGARES_': 50.0,
   'AREA_KM': 0.071638015404031,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47773059549315, -34.620290444304224],
     [-58.4775252799276, -34.620182862697305],
     [-58.476651970826886, -34.61972690469144],
     [-58.476470869162746, -34.61963104233379],
     [-58.47570519325344, -34.62059356745119],
     [-58.47553071910037, -34.62050168358547],
     [-58.474415643011014, -34.61990664884955],
     [-58.47358948548962, -34.62094434158883],
     [-58.47390921043414, -34.62110959598471],
     [-58.47488977739239, -34.62162373244597],
     [-58.475145272024584, -34.62175772206773],
     [-58.47542615518864, -34.6219049480734],
     [-58.47614144432562, -34.62227698771369],
     [-58.476960089348715, -34.621253645141316],
     [-58.47822454573376, -34.62191096212528],
     [-58.47883493250333, -34.621147635857675],
     [-58.478835548922326, -34.621146864344766],
     [-58.47856376736294, -34.620873369687835],
     [-58.47855964340459, -34.620870345221405],
     [-58.47803558804771, -34.62045019670295],
     [-58.47773059549315, -34.620290444304224]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_18_9',
   'BARRIO': 'VILLA SANTA RITA',
   'COMUNA': '11',
   'POBLACI': 815.0,
   'VIVIEND': 353.0,
   'HOGARES': 304.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.054827081472516,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.478872916289795, -34.62110009513853],
     [-58.478835548922326, -34.621146864344766],
     [-58.47883493250333, -34.621147635857675],
     [-58.47822454573376, -34.62191096212528],
     [-58.476960089348715, -34.621253645141316],
     [-58.47614144432562, -34.62227698771369],
     [-58.477206892783656, -34.6228310964555],
     [-58.477405909833244, -34.622934594763066],
     [-58.477515727242015, -34.62299169470763],
     [-58.47819874742507, -34.623357247194335],
     [-58.47877569748622, -34.62363921750392],
     [-58.479869595647365, -34.62276596136929],
     [-58.480217188616706, -34.62248837401736],
     [-58.478872916289795, -34.62110009513853]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_1',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 568.0,
   'VIVIEND': 259.0,
   'HOGARES': 221.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.038337622623526,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47451152745184, -34.60643803572863],
     [-58.47414348310227, -34.60691272459693],
     [-58.475123883465116, -34.60741953637979],
     [-58.47528546787198, -34.607505295523104],
     [-58.47652806903022, -34.60816481698674],
     [-58.47768312308644, -34.60877778664499],
     [-58.47782912442086, -34.60885488223592],
     [-58.47844354254786, -34.60917924502944],
     [-58.47906392828406, -34.60950684338588],
     [-58.479442006808355, -34.60903333570101],
     [-58.479809948312116, -34.60857391290803],
     [-58.47960645925816, -34.60852408151546],
     [-58.47920782920739, -34.60842624758976],
     [-58.4790689051566, -34.60839218138613],
     [-58.47860341244243, -34.60827794578506],
     [-58.47834481446429, -34.60820952768067],
     [-58.47812318372893, -34.60815089321165],
     [-58.47701817738002, -34.6078068687559],
     [-58.476864516580655, -34.607750195856035],
     [-58.476728743290224, -34.60770007008282],
     [-58.47629517896667, -34.60747370793079],
     [-58.475764513055346, -34.60719657939035],
     [-58.475601649173385, -34.60709786310559],
     [-58.474663656114544, -34.60652928965086],
     [-58.47451152745184, -34.60643803572863]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_2',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 871.0,
   'VIVIEND': 398.0,
   'HOGARES': 322.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.034389020691216,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47652806903022, -34.60816481698674],
     [-58.47528546787198, -34.607505295523104],
     [-58.475123883465116, -34.60741953637979],
     [-58.47414348310227, -34.60691272459693],
     [-58.47336412132322, -34.60791794843692],
     [-58.47350730585192, -34.60799033108977],
     [-58.474499642225084, -34.60851806248677],
     [-58.475547954889294, -34.6090754985516],
     [-58.47572359789429, -34.609169354298565],
     [-58.47652806903022, -34.60816481698674]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_3',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 710.0,
   'VIVIEND': 338.0,
   'HOGARES': 279.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.018942514506668,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47782912442086, -34.60885488223592],
     [-58.47768312308644, -34.60877778664499],
     [-58.47652806903022, -34.60816481698674],
     [-58.47572359789429, -34.609169354298565],
     [-58.477023129863746, -34.60986351274556],
     [-58.47741808054781, -34.609358741395944],
     [-58.47782912442086, -34.60885488223592]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_4',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 1022.0,
   'VIVIEND': 402.0,
   'HOGARES': 339.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.054788600134641,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47844354254786, -34.60917924502944],
     [-58.47782912442086, -34.60885488223592],
     [-58.47741808054781, -34.609358741395944],
     [-58.477023129863746, -34.60986351274556],
     [-58.47572359789429, -34.609169354298565],
     [-58.47555132426937, -34.609384445572616],
     [-58.474923451137855, -34.61017275893473],
     [-58.47622554649967, -34.61086164375216],
     [-58.476374616749375, -34.610940501300654],
     [-58.47746036784958, -34.611515311072154],
     [-58.47825921986308, -34.61051477754557],
     [-58.47866081012718, -34.61001183238861],
     [-58.47906392828406, -34.60950684338588],
     [-58.47844354254786, -34.60917924502944]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_5',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 791.0,
   'VIVIEND': 336.0,
   'HOGARES': 306.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.054805764355063,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4754230047481, -34.61186596715479],
     [-58.47462265788594, -34.612867467966076],
     [-58.475859796464086, -34.61352284120122],
     [-58.47656100837429, -34.612641697179484],
     [-58.47665936767472, -34.61251844511501],
     [-58.47746036784958, -34.611515311072154],
     [-58.476374616749375, -34.610940501300654],
     [-58.47622554649967, -34.61086164375216],
     [-58.474923451137855, -34.61017275893473],
     [-58.47412268916932, -34.611178130071046],
     [-58.4754230047481, -34.61186596715479]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_6',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 921.0,
   'VIVIEND': 390.0,
   'HOGARES': 341.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.055662333138525,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47462265788594, -34.612867467966076],
     [-58.4754230047481, -34.61186596715479],
     [-58.47412268916932, -34.611178130071046],
     [-58.47332446279288, -34.612180256092145],
     [-58.47252545075738, -34.613183433140186],
     [-58.472684573321104, -34.61326771695399],
     [-58.473821014423145, -34.6138712170283],
     [-58.47397153597188, -34.6139512041145],
     [-58.475060546681505, -34.61452702058054],
     [-58.475859796464086, -34.61352284120122],
     [-58.47462265788594, -34.612867467966076]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_7',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 916.0,
   'VIVIEND': 361.0,
   'HOGARES': 319.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.060764342072107,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.473821014423145, -34.6138712170283],
     [-58.472684573321104, -34.61326771695399],
     [-58.47252545075738, -34.613183433140186],
     [-58.4717243754709, -34.614189069760045],
     [-58.47161919352416, -34.6143211916505],
     [-58.47173905347372, -34.61444012782008],
     [-58.47248024385357, -34.61555501257652],
     [-58.472584778843164, -34.61571218897405],
     [-58.47284336293829, -34.61621428590435],
     [-58.47345841235474, -34.61654001139626],
     [-58.47425957435672, -34.61553344826866],
     [-58.475060546681505, -34.61452702058054],
     [-58.47397153597188, -34.6139512041145],
     [-58.473821014423145, -34.6138712170283]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_8',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 837.0,
   'VIVIEND': 359.0,
   'HOGARES': 301.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.068698526135921,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47092166264577, -34.61519674334105],
     [-58.47052255599233, -34.61569790185879],
     [-58.4701232741798, -34.61619905904043],
     [-58.469323333394655, -34.61720327086352],
     [-58.47044174385682, -34.617793563423405],
     [-58.47062165878185, -34.617889116267094],
     [-58.4714200573974, -34.61688644546749],
     [-58.47265944541913, -34.61754375198668],
     [-58.47345841235474, -34.61654001139626],
     [-58.47284336293829, -34.61621428590435],
     [-58.472584778843164, -34.61571218897405],
     [-58.47248024385357, -34.61555501257652],
     [-58.47173905347372, -34.61444012782008],
     [-58.47161919352416, -34.6143211916505],
     [-58.47092166264577, -34.61519674334105]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_19_9',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 889.0,
   'VIVIEND': 399.0,
   'HOGARES': 348.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.056450820830643,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47062165878185, -34.617889116267094],
     [-58.47044174385682, -34.617793563423405],
     [-58.469323333394655, -34.61720327086352],
     [-58.46849364702366, -34.61824473260632],
     [-58.468739835529654, -34.61837162341077],
     [-58.46978678618375, -34.618937558926675],
     [-58.47079950509906, -34.61948489593989],
     [-58.47102108147794, -34.61960213575896],
     [-58.47186079995203, -34.618547205462775],
     [-58.47265944541913, -34.61754375198668],
     [-58.4714200573974, -34.61688644546749],
     [-58.47062165878185, -34.617889116267094]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 836.0,
   'VIVIEND': 340.0,
   'HOGARES': 286.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.146640104377389,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.518575952015766, -34.59583722257388],
     [-58.51968886621142, -34.596519182247356],
     [-58.51984869510293, -34.5966169257644],
     [-58.52075845735201, -34.59720981439661],
     [-58.52097407125695, -34.597187739484475],
     [-58.521612899790426, -34.59711116407511],
     [-58.52197702027095, -34.597068451937815],
     [-58.52197758898854, -34.597069995063585],
     [-58.522048541787875, -34.597050833607334],
     [-58.51936839562255, -34.59133980281098],
     [-58.51913484488374, -34.59161584363416],
     [-58.518662325394835, -34.592174322012674],
     [-58.51865766123564, -34.592164552589814],
     [-58.51804613680379, -34.59287733672075],
     [-58.51727652233362, -34.59372559077934],
     [-58.51651297730501, -34.59456714581779],
     [-58.51662968969832, -34.59463617978769],
     [-58.51717279641623, -34.59496995740229],
     [-58.51730629701514, -34.595055321484935],
     [-58.51745291795226, -34.595149059934556],
     [-58.518575952015766, -34.59583722257388]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 1022.0,
   'VIVIEND': 431.0,
   'HOGARES': 348.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.105123540010035,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51761781507664, -34.60127350625407],
     [-58.518887482813554, -34.602055825785726],
     [-58.52015376620353, -34.602836020882954],
     [-58.52080675491622, -34.60211704037813],
     [-58.520913046430735, -34.602000016359234],
     [-58.52145709183842, -34.6013974941888],
     [-58.5203158956623, -34.60069711364123],
     [-58.52018715394692, -34.60061428593977],
     [-58.520058753292425, -34.6005316692113],
     [-58.51906216355821, -34.59991860430201],
     [-58.51892022045015, -34.59983078128197],
     [-58.51773194875522, -34.59909589053609],
     [-58.51765169198324, -34.59904627814578],
     [-58.51759195084167, -34.599112643961355],
     [-58.51620482733508, -34.599278614425785],
     [-58.51590686205421, -34.59931430857595],
     [-58.51537760944742, -34.599378412307125],
     [-58.514684853674154, -34.599462442931966],
     [-58.51508255319626, -34.59970798038766],
     [-58.5163506408816, -34.60049110187824],
     [-58.517500494287646, -34.6012012341037],
     [-58.51761781507664, -34.60127350625407]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 837.0,
   'VIVIEND': 404.0,
   'HOGARES': 328.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.092915269770503,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51537760944742, -34.599378412307125],
     [-58.51549173330131, -34.59925054435722],
     [-58.51565513952885, -34.599080119133],
     [-58.51573309038836, -34.598987337542766],
     [-58.51582652905778, -34.59887609820445],
     [-58.51638310383037, -34.59826429698094],
     [-58.51511360253323, -34.597482091636834],
     [-58.51432623571461, -34.59699692760761],
     [-58.514197874188575, -34.596917820485906],
     [-58.51419514659482, -34.59691636963941],
     [-58.51382005988889, -34.59671685453971],
     [-58.513204089762574, -34.596618448256876],
     [-58.511439401365976, -34.59636402812942],
     [-58.51143897125055, -34.596363672789906],
     [-58.51105885456976, -34.59627607302038],
     [-58.51107777261917, -34.59644430731789],
     [-58.5094831975329, -34.59625189819385],
     [-58.510783809272574, -34.59705633345797],
     [-58.51121564824062, -34.597323419761864],
     [-58.51145009815922, -34.59746839875454],
     [-58.5120880211477, -34.59785779549757],
     [-58.512762413033656, -34.598269357323964],
     [-58.51289991812138, -34.598356485125024],
     [-58.513028989183155, -34.598438334486325],
     [-58.51312065956665, -34.59849639602771],
     [-58.51381287064199, -34.59892393076889],
     [-58.514684853674154, -34.599462442931966],
     [-58.51537760944742, -34.599378412307125]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 973.0,
   'VIVIEND': 404.0,
   'HOGARES': 361.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.125872426861912,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51865766123564, -34.592164552589814],
     [-58.518662325394835, -34.592174322012674],
     [-58.51913484488374, -34.59161584363416],
     [-58.51936839562255, -34.59133980281098],
     [-58.518601368360656, -34.589705214997124],
     [-58.518280721403606, -34.58979345848113],
     [-58.517648416961414, -34.589967468487885],
     [-58.51764920659013, -34.589969177696396],
     [-58.51766916139263, -34.5900127609146],
     [-58.517284503014245, -34.590118005571505],
     [-58.51721270539085, -34.590098952870214],
     [-58.51606598084825, -34.590443267687334],
     [-58.514771089020336, -34.59080693108774],
     [-58.514228084834905, -34.59099357280206],
     [-58.5132785186718, -34.59127594607613],
     [-58.513540045457596, -34.591438586297215],
     [-58.513731376840646, -34.5915555504252],
     [-58.514885084001754, -34.5922607067268],
     [-58.51503552834443, -34.59235282675071],
     [-58.51632769356757, -34.593143897017185],
     [-58.517014336674166, -34.59356423323273],
     [-58.5171457879902, -34.59364488004606],
     [-58.51727652233362, -34.59372559077934],
     [-58.51804613680379, -34.59287733672075],
     [-58.51865766123564, -34.592164552589814]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 739.0,
   'VIVIEND': 355.0,
   'HOGARES': 286.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.064876032947242,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.513731376840646, -34.5915555504252],
     [-58.513540045457596, -34.591438586297215],
     [-58.5132785186718, -34.59127594607613],
     [-58.511832318659444, -34.59170597988271],
     [-58.510772562813194, -34.59202105448389],
     [-58.5104327658049, -34.592129569744976],
     [-58.5107164451195, -34.592317700661134],
     [-58.51091194964987, -34.59243882254195],
     [-58.512207320056085, -34.59324155506496],
     [-58.513505611788794, -34.59404596266906],
     [-58.51426989732484, -34.59320062985946],
     [-58.51493868765665, -34.592460897995814],
     [-58.51503552834443, -34.59235282675071],
     [-58.514885084001754, -34.5922607067268],
     [-58.513731376840646, -34.5915555504252]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 555.0,
   'VIVIEND': 280.0,
   'HOGARES': 223.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.065902705220684,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5104327658049, -34.592129569744976],
     [-58.51032540303775, -34.59216383754809],
     [-58.5104572438753, -34.59294034670079],
     [-58.51056020625042, -34.593546864478924],
     [-58.510727768747834, -34.594533503004705],
     [-58.510778007803204, -34.594820952122134],
     [-58.510994603404285, -34.59605982782028],
     [-58.510995651317586, -34.596061560398034],
     [-58.51104361763376, -34.59614086589046],
     [-58.511179795250285, -34.59615095285255],
     [-58.511462128525984, -34.59619534802644],
     [-58.511550192428196, -34.59620869327394],
     [-58.51208635354111, -34.595615722626235],
     [-58.512738417301186, -34.59489453125692],
     [-58.513505611788794, -34.59404596266906],
     [-58.512207320056085, -34.59324155506496],
     [-58.51091194964987, -34.59243882254195],
     [-58.5107164451195, -34.592317700661134],
     [-58.5104327658049, -34.592129569744976]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 1066.0,
   'VIVIEND': 468.0,
   'HOGARES': 389.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.126416087029696,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51651297730501, -34.59456714581779],
     [-58.51727652233362, -34.59372559077934],
     [-58.5171457879902, -34.59364488004606],
     [-58.517014336674166, -34.59356423323273],
     [-58.51632769356757, -34.593143897017185],
     [-58.51503552834443, -34.59235282675071],
     [-58.51493868765665, -34.592460897995814],
     [-58.51426989732484, -34.59320062985946],
     [-58.513505611788794, -34.59404596266906],
     [-58.512738417301186, -34.59489453125692],
     [-58.51208635354111, -34.595615722626235],
     [-58.511550192428196, -34.59620869327394],
     [-58.511462128525984, -34.59619534802644],
     [-58.511179795250285, -34.59615095285255],
     [-58.51104361763376, -34.59614086589046],
     [-58.51104461229399, -34.59618024923],
     [-58.51105885456976, -34.59627607302038],
     [-58.51143897125055, -34.596363672789906],
     [-58.511439401365976, -34.59636402812942],
     [-58.513204089762574, -34.596618448256876],
     [-58.51382005988889, -34.59671685453971],
     [-58.51419514659482, -34.59691636963941],
     [-58.51419527978081, -34.59691622159163],
     [-58.514301980058235, -34.59679384291042],
     [-58.51443699365937, -34.59664754582756],
     [-58.51443698447922, -34.5966475800618],
     [-58.51461601012768, -34.5966749691989],
     [-58.51497394860997, -34.59627720519537],
     [-58.515740705137226, -34.595425313035236],
     [-58.51651297730501, -34.59456714581779]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 981.0,
   'VIVIEND': 393.0,
   'HOGARES': 358.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.111435775649503,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51730629701514, -34.595055321484935],
     [-58.51717279641623, -34.59496995740229],
     [-58.51662968969832, -34.59463617978769],
     [-58.51651297730501, -34.59456714581779],
     [-58.515740705137226, -34.595425313035236],
     [-58.51497394860997, -34.59627720519537],
     [-58.51461601012768, -34.5966749691989],
     [-58.51443698447922, -34.5966475800618],
     [-58.51443699365937, -34.59664754582756],
     [-58.514301980058235, -34.59679384291042],
     [-58.514551703789046, -34.5968346657871],
     [-58.51556328294442, -34.59698442597485],
     [-58.51630954085696, -34.5970987498829],
     [-58.51729828037175, -34.59725021500754],
     [-58.51886993156614, -34.59749133600354],
     [-58.5190212159137, -34.59753272599466],
     [-58.51902001672119, -34.59753549278682],
     [-58.51909283548499, -34.59754327616512],
     [-58.5195616759423, -34.59782792166763],
     [-58.51968347414371, -34.59791530759192],
     [-58.52020067807095, -34.59792640513358],
     [-58.520696875449, -34.59793055783009],
     [-58.52117319670634, -34.59794195038764],
     [-58.52147297305054, -34.597974838027085],
     [-58.52185977359252, -34.597938520819405],
     [-58.5219256975668, -34.597950179141385],
     [-58.52204561707334, -34.597965402777824],
     [-58.522179257912626, -34.5979948451557],
     [-58.522338636029126, -34.59804962727031],
     [-58.52255591136868, -34.598131874522565],
     [-58.522048541787875, -34.597050833607334],
     [-58.52197758898854, -34.597069995063585],
     [-58.52197702027095, -34.597068451937815],
     [-58.521612899790426, -34.59711116407511],
     [-58.52097407125695, -34.597187739484475],
     [-58.52075845735201, -34.59720981439661],
     [-58.51984869510293, -34.5966169257644],
     [-58.51968886621142, -34.596519182247356],
     [-58.518575952015766, -34.59583722257388],
     [-58.51745291795226, -34.595149059934556],
     [-58.51730629701514, -34.595055321484935]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 841.0,
   'VIVIEND': 389.0,
   'HOGARES': 312.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.082761324523382,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51573309038836, -34.598987337542766],
     [-58.51565513952885, -34.599080119133],
     [-58.51549173330131, -34.59925054435722],
     [-58.51537760944742, -34.599378412307125],
     [-58.51590686205421, -34.59931430857595],
     [-58.51620482733508, -34.599278614425785],
     [-58.51759195084167, -34.599112643961355],
     [-58.51765169198324, -34.59904627814578],
     [-58.51773194875522, -34.59909589053609],
     [-58.519253443107466, -34.59891378395167],
     [-58.519807981773894, -34.59884746844802],
     [-58.52101609284727, -34.59870281059693],
     [-58.52032188996035, -34.59827813460031],
     [-58.52026354956713, -34.59818881927633],
     [-58.52023607661103, -34.598122411276336],
     [-58.52020067807095, -34.59792640513358],
     [-58.51968347414371, -34.59791530759192],
     [-58.5195616759423, -34.59782792166763],
     [-58.51909283548499, -34.59754327616512],
     [-58.51902001672119, -34.59753549278682],
     [-58.5190212159137, -34.59753272599466],
     [-58.51886993156614, -34.59749133600354],
     [-58.51729828037175, -34.59725021500754],
     [-58.51630954085696, -34.5970987498829],
     [-58.51556328294442, -34.59698442597485],
     [-58.514551703789046, -34.5968346657871],
     [-58.514301980058235, -34.59679384291042],
     [-58.51419527978081, -34.59691622159163],
     [-58.51419514659482, -34.59691636963941],
     [-58.514197874188575, -34.596917820485906],
     [-58.51432623571461, -34.59699692760761],
     [-58.51511360253323, -34.597482091636834],
     [-58.51638310383037, -34.59826429698094],
     [-58.51582652905778, -34.59887609820445],
     [-58.51573309038836, -34.598987337542766]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 883.0,
   'VIVIEND': 338.0,
   'HOGARES': 302.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.129468423444331,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.519253443107466, -34.59891378395167],
     [-58.51773194875522, -34.59909589053609],
     [-58.51892022045015, -34.59983078128197],
     [-58.51906216355821, -34.59991860430201],
     [-58.520058753292425, -34.6005316692113],
     [-58.52018715394692, -34.60061428593977],
     [-58.5203158956623, -34.60069711364123],
     [-58.52145709183842, -34.6013974941888],
     [-58.52259157607243, -34.60209378270657],
     [-58.522728925660815, -34.602178505047085],
     [-58.52314573866908, -34.601718011587444],
     [-58.52315013617908, -34.601727472432515],
     [-58.52361892342991, -34.6012062752406],
     [-58.52386860987544, -34.60092867069498],
     [-58.52255591136868, -34.598131874522565],
     [-58.522338636029126, -34.59804962727031],
     [-58.522179257912626, -34.5979948451557],
     [-58.52204561707334, -34.597965402777824],
     [-58.5219256975668, -34.597950179141385],
     [-58.52185977359252, -34.597938520819405],
     [-58.52147297305054, -34.597974838027085],
     [-58.52117319670634, -34.59794195038764],
     [-58.520696875449, -34.59793055783009],
     [-58.52020067807095, -34.59792640513358],
     [-58.52023607661103, -34.598122411276336],
     [-58.52026354956713, -34.59818881927633],
     [-58.52032188996035, -34.59827813460031],
     [-58.52101609284727, -34.59870281059693],
     [-58.519807981773894, -34.59884746844802],
     [-58.519253443107466, -34.59891378395167]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_2_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 665.0,
   'VIVIEND': 284.0,
   'HOGARES': 238.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.120724350209796,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52079494770561, -34.60322236390963],
     [-58.521445521137785, -34.60360174332476],
     [-58.52143130490732, -34.60360119711728],
     [-58.522516672549024, -34.60429201666752],
     [-58.52267711704978, -34.60439144620518],
     [-58.52430893518082, -34.60540268810031],
     [-58.52472433951631, -34.60509958653594],
     [-58.52472271433321, -34.605096139968886],
     [-58.52528373863415, -34.604720384331976],
     [-58.525561198227884, -34.60453454880437],
     [-58.52386860987544, -34.60092867069498],
     [-58.52361892342991, -34.6012062752406],
     [-58.52315013617908, -34.601727472432515],
     [-58.52314573866908, -34.601718011587444],
     [-58.522728925660815, -34.602178505047085],
     [-58.52259157607243, -34.60209378270657],
     [-58.52145709183842, -34.6013974941888],
     [-58.520913046430735, -34.602000016359234],
     [-58.52080675491622, -34.60211704037813],
     [-58.52015376620353, -34.602836020882954],
     [-58.52077993000432, -34.60322178574145],
     [-58.52079494770561, -34.60322236390963]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_1',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 895.0,
   'VIVIEND': 403.0,
   'HOGARES': 356.0,
   'HOGARES_': 17.0,
   'AREA_KM': 0.069647365668625,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471838525915544, -34.60573452399252],
     [-58.47063714865292, -34.605218474772016],
     [-58.47048153711735, -34.60515179380818],
     [-58.46970478873929, -34.60616643113912],
     [-58.47038694868746, -34.60645801343462],
     [-58.47106528053518, -34.60674804284928],
     [-58.472217546754436, -34.60733845867808],
     [-58.47238781565322, -34.60742492521666],
     [-58.47336412132322, -34.60791794843692],
     [-58.47414348310227, -34.60691272459693],
     [-58.47451152745184, -34.60643803572863],
     [-58.474353862524865, -34.60634333139687],
     [-58.47374117680815, -34.60596007371665],
     [-58.47356221878509, -34.605848116541104],
     [-58.47341656570966, -34.605758339558335],
     [-58.472438568810496, -34.605155667436314],
     [-58.4723834600032, -34.60512158688252],
     [-58.471838525915544, -34.60573452399252]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_10',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 770.0,
   'VIVIEND': 332.0,
   'HOGARES': 292.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.088389574139833,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46724834101721, -34.61175084021403],
     [-58.46721410248418, -34.611795701161405],
     [-58.467799625245384, -34.612107160572094],
     [-58.468358746496214, -34.612404604138206],
     [-58.469133610091234, -34.611387511697856],
     [-58.46860720172305, -34.61110845055034],
     [-58.46810064347137, -34.61083994974597],
     [-58.467989826165315, -34.61077903839127],
     [-58.468750541656, -34.609782089809904],
     [-58.467460279539594, -34.6091050261773],
     [-58.46735373488874, -34.609244750279615],
     [-58.466050379037036, -34.60864978584697],
     [-58.46591639905457, -34.60859021126508],
     [-58.46491351866724, -34.609914122742424],
     [-58.46476395658848, -34.61009990222319],
     [-58.46453194667226, -34.61038821920684],
     [-58.465223324240306, -34.610753352023536],
     [-58.465281070761186, -34.610673561142804],
     [-58.46534231378255, -34.61073334926892],
     [-58.46596112657114, -34.6110636902934],
     [-58.46724834101721, -34.61175084021403]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_11',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 698.0,
   'VIVIEND': 301.0,
   'HOGARES': 252.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.048012584362596,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46890756485504, -34.61269662305444],
     [-58.469438073036926, -34.61297878123279],
     [-58.470224428016294, -34.61196562503356],
     [-58.471006335315835, -34.61095809776984],
     [-58.47045002549755, -34.610664821066315],
     [-58.4703463620062, -34.610610108652],
     [-58.46990138603243, -34.61037942877649],
     [-58.46885531036163, -34.60983708522548],
     [-58.468750541656, -34.609782089809904],
     [-58.467989826165315, -34.61077903839127],
     [-58.46810064347137, -34.61083994974597],
     [-58.46860720172305, -34.61110845055034],
     [-58.469133610091234, -34.611387511697856],
     [-58.468358746496214, -34.612404604138206],
     [-58.46890756485504, -34.61269662305444]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_2',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 856.0,
   'VIVIEND': 394.0,
   'HOGARES': 317.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.053389034975126,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.469004219409996, -34.604518701993776],
     [-58.46832582213919, -34.60540930987827],
     [-58.46822992906303, -34.60553593558191],
     [-58.46970478873929, -34.60616643113912],
     [-58.47048153711735, -34.60515179380818],
     [-58.47063714865292, -34.605218474772016],
     [-58.471838525915544, -34.60573452399252],
     [-58.4723834600032, -34.60512158688252],
     [-58.472049230723805, -34.60491477933377],
     [-58.47120352875459, -34.6043888485663],
     [-58.47111009250212, -34.60433075570545],
     [-58.471009672096415, -34.60426829699507],
     [-58.46983418083118, -34.603384768424455],
     [-58.469096192815584, -34.60439792101142],
     [-58.469004219409996, -34.604518701993776]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_3',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 1136.0,
   'VIVIEND': 408.0,
   'HOGARES': 389.0,
   'HOGARES_': 43.0,
   'AREA_KM': 0.077607721122861,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47106528053518, -34.60674804284928],
     [-58.47038694868746, -34.60645801343462],
     [-58.46970478873929, -34.60616643113912],
     [-58.46822992906303, -34.60553593558191],
     [-58.46745843055534, -34.606554431599314],
     [-58.4666878500494, -34.607571795763704],
     [-58.468152853665245, -34.60819695801161],
     [-58.469516093321744, -34.608778657100764],
     [-58.470296529973076, -34.60775571121572],
     [-58.47106528053518, -34.60674804284928]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_4',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 893.0,
   'VIVIEND': 338.0,
   'HOGARES': 303.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.065642278268337,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47067254996816, -34.60936704480957],
     [-58.47083558125916, -34.60944999278902],
     [-58.471227317786244, -34.6096506726669],
     [-58.471795036717, -34.60994155063086],
     [-58.47257980144955, -34.60892957606339],
     [-58.47336412132322, -34.60791794843692],
     [-58.47238781565322, -34.60742492521666],
     [-58.472217546754436, -34.60733845867808],
     [-58.47106528053518, -34.60674804284928],
     [-58.470296529973076, -34.60775571121572],
     [-58.469516093321744, -34.608778657100764],
     [-58.47067254996816, -34.60936704480957]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_5',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 863.0,
   'VIVIEND': 378.0,
   'HOGARES': 328.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.068153278211027,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47572359789429, -34.609169354298565],
     [-58.475547954889294, -34.6090754985516],
     [-58.474499642225084, -34.60851806248677],
     [-58.47350730585192, -34.60799033108977],
     [-58.47336412132322, -34.60791794843692],
     [-58.47257980144955, -34.60892957606339],
     [-58.471795036717, -34.60994155063086],
     [-58.47192919443056, -34.61001027376859],
     [-58.47292861498498, -34.61054273559586],
     [-58.47395258069568, -34.61108821524856],
     [-58.47412268916932, -34.611178130071046],
     [-58.474923451137855, -34.61017275893473],
     [-58.47555132426937, -34.609384445572616],
     [-58.47572359789429, -34.609169354298565]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_6',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 711.0,
   'VIVIEND': 292.0,
   'HOGARES': 267.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.05162777848345,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471358618627036, -34.612565908842825],
     [-58.470570483242604, -34.613581396336414],
     [-58.470759333457366, -34.61368201894711],
     [-58.47104563376133, -34.61383580424976],
     [-58.47122136709394, -34.6139314974046],
     [-58.47135928183236, -34.614031136701215],
     [-58.47149354114142, -34.61419655148918],
     [-58.47161919352416, -34.6143211916505],
     [-58.4717243754709, -34.614189069760045],
     [-58.47252545075738, -34.613183433140186],
     [-58.47332446279288, -34.612180256092145],
     [-58.47412268916932, -34.611178130071046],
     [-58.47395258069568, -34.61108821524856],
     [-58.47292861498498, -34.61054273559586],
     [-58.47214179530292, -34.61155668415172],
     [-58.47197487363188, -34.611771769878175],
     [-58.471358618627036, -34.612565908842825]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_7',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 653.0,
   'VIVIEND': 259.0,
   'HOGARES': 232.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.049468467273086,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471006335315835, -34.61095809776984],
     [-58.470224428016294, -34.61196562503356],
     [-58.469438073036926, -34.61297878123279],
     [-58.47034398284115, -34.61346070514661],
     [-58.470570483242604, -34.613581396336414],
     [-58.471358618627036, -34.612565908842825],
     [-58.47197487363188, -34.611771769878175],
     [-58.47214179530292, -34.61155668415172],
     [-58.47292861498498, -34.61054273559586],
     [-58.47192919443056, -34.61001027376859],
     [-58.471795036717, -34.60994155063086],
     [-58.471629394863285, -34.61015529780226],
     [-58.471006335315835, -34.61095809776984]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_8',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 502.0,
   'VIVIEND': 234.0,
   'HOGARES': 191.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.032531567648441,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471795036717, -34.60994155063086],
     [-58.471227317786244, -34.6096506726669],
     [-58.47083558125916, -34.60944999278902],
     [-58.47067254996816, -34.60936704480957],
     [-58.469516093321744, -34.608778657100764],
     [-58.468750541656, -34.609782089809904],
     [-58.46885531036163, -34.60983708522548],
     [-58.46990138603243, -34.61037942877649],
     [-58.4703463620062, -34.610610108652],
     [-58.47045002549755, -34.610664821066315],
     [-58.471006335315835, -34.61095809776984],
     [-58.471629394863285, -34.61015529780226],
     [-58.471795036717, -34.60994155063086]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_20_9',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 820.0,
   'VIVIEND': 299.0,
   'HOGARES': 260.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.037927209217191,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.469516093321744, -34.608778657100764],
     [-58.468152853665245, -34.60819695801161],
     [-58.4666878500494, -34.607571795763704],
     [-58.46591639905457, -34.60859021126508],
     [-58.466050379037036, -34.60864978584697],
     [-58.46735373488874, -34.609244750279615],
     [-58.467460279539594, -34.6091050261773],
     [-58.468750541656, -34.609782089809904],
     [-58.469516093321744, -34.608778657100764]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_1',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 794.0,
   'VIVIEND': 376.0,
   'HOGARES': 323.0,
   'HOGARES_': 20.0,
   'AREA_KM': 0.047230015069664,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46983418083118, -34.603384768424455],
     [-58.46959459245085, -34.60325337203848],
     [-58.468692278273544, -34.602612354973495],
     [-58.468312412111395, -34.60230765072214],
     [-58.46816618279214, -34.602341390199136],
     [-58.46689312366604, -34.60265743065627],
     [-58.46673420350881, -34.60269680272736],
     [-58.46548293623888, -34.603006841737134],
     [-58.46625235434642, -34.60333753029634],
     [-58.46767759102099, -34.60394995319846],
     [-58.467828343345445, -34.60401473652318],
     [-58.469004219409996, -34.604518701993776],
     [-58.469096192815584, -34.60439792101142],
     [-58.46983418083118, -34.603384768424455]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_10',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 829.0,
   'VIVIEND': 336.0,
   'HOGARES': 292.0,
   'HOGARES_': 25.0,
   'AREA_KM': 0.052533381420732,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46518049241494, -34.60827444995775],
     [-58.464899759162435, -34.608155298959296],
     [-58.464751301338964, -34.60809234303025],
     [-58.464587086615914, -34.60802185186124],
     [-58.463802318889904, -34.609054409226005],
     [-58.46365198536611, -34.608894478983444],
     [-58.46346434645013, -34.608734337520666],
     [-58.46334629544847, -34.60865511189091],
     [-58.463284714820574, -34.60861384409542],
     [-58.46315993544959, -34.60853011121884],
     [-58.46210498487032, -34.60782010196984],
     [-58.461593254732726, -34.60885405465387],
     [-58.46282665406473, -34.60949794059902],
     [-58.46453194667226, -34.61038821920684],
     [-58.46476395658848, -34.61009990222319],
     [-58.46491351866724, -34.609914122742424],
     [-58.46591639905457, -34.60859021126508],
     [-58.46518049241494, -34.60827444995775]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_11',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 941.0,
   'VIVIEND': 427.0,
   'HOGARES': 374.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.036735698278427,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.464587086615914, -34.60802185186124],
     [-58.46382001675027, -34.60769284319702],
     [-58.46370367068326, -34.6076429140186],
     [-58.462639953834774, -34.60719249004348],
     [-58.462452064937196, -34.60711248881652],
     [-58.46132082127446, -34.60663043303335],
     [-58.46117100614202, -34.60656662763574],
     [-58.46003611498908, -34.60608315138385],
     [-58.45991346078725, -34.60633301092948],
     [-58.460940863700934, -34.60703071481073],
     [-58.461550857712076, -34.6074449525522],
     [-58.461910366933246, -34.60768911334235],
     [-58.46210498487032, -34.60782010196984],
     [-58.46315993544959, -34.60853011121884],
     [-58.463284714820574, -34.60861384409542],
     [-58.46334629544847, -34.60865511189091],
     [-58.46346434645013, -34.608734337520666],
     [-58.46365198536611, -34.608894478983444],
     [-58.463802318889904, -34.609054409226005],
     [-58.464587086615914, -34.60802185186124]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_2',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 765.0,
   'VIVIEND': 306.0,
   'HOGARES': 271.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.054493425121114,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.466131524908114, -34.60598791974595],
     [-58.46731755405417, -34.6064945771105],
     [-58.46745843055534, -34.606554431599314],
     [-58.46822992906303, -34.60553593558191],
     [-58.46832582213919, -34.60540930987827],
     [-58.469004219409996, -34.604518701993776],
     [-58.467828343345445, -34.60401473652318],
     [-58.46767759102099, -34.60394995319846],
     [-58.46690575969946, -34.60496731922594],
     [-58.46564761537948, -34.60442720836052],
     [-58.46548545118846, -34.604357281695826],
     [-58.46492540978227, -34.605472307402586],
     [-58.46598008897339, -34.6059232047877],
     [-58.466131524908114, -34.60598791974595]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_3',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 997.0,
   'VIVIEND': 469.0,
   'HOGARES': 423.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.03666060813427,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46548293623888, -34.603006841737134],
     [-58.46519720108621, -34.60307762349111],
     [-58.4646787885621, -34.60320615580163],
     [-58.46434603964542, -34.60329031676923],
     [-58.46411064362919, -34.603763917409815],
     [-58.46548545118846, -34.604357281695826],
     [-58.46564761537948, -34.60442720836052],
     [-58.46690575969946, -34.60496731922594],
     [-58.46767759102099, -34.60394995319846],
     [-58.46625235434642, -34.60333753029634],
     [-58.46548293623888, -34.603006841737134]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_4',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 756.0,
   'VIVIEND': 373.0,
   'HOGARES': 318.0,
   'HOGARES_': 17.0,
   'AREA_KM': 0.03912440685463,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46548545118846, -34.604357281695826],
     [-58.46411064362919, -34.603763917409815],
     [-58.46434603964542, -34.60329031676923],
     [-58.46375966066626, -34.60343870548097],
     [-58.46247336698017, -34.60376413662406],
     [-58.46231154689445, -34.60380533393189],
     [-58.46150891690558, -34.604009767995265],
     [-58.46227628446579, -34.604338509696305],
     [-58.46355322815225, -34.60488555669991],
     [-58.463742390646146, -34.604966542177735],
     [-58.46492540978227, -34.605472307402586],
     [-58.46548545118846, -34.604357281695826]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_5',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 922.0,
   'VIVIEND': 475.0,
   'HOGARES': 391.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.045514592811346,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45952446888629, -34.60451593617308],
     [-58.459421413197944, -34.60454234223629],
     [-58.45833532150343, -34.60482083290455],
     [-58.45787446280765, -34.6049389860686],
     [-58.45818293489308, -34.6051620288841],
     [-58.45891349894289, -34.60565614450527],
     [-58.459054025780176, -34.60575114998348],
     [-58.45971101427485, -34.60619553962833],
     [-58.45991346078725, -34.60633301092948],
     [-58.46003611498908, -34.60608315138385],
     [-58.46058379111055, -34.60496723251289],
     [-58.46172352492654, -34.605452816501],
     [-58.46227628446579, -34.604338509696305],
     [-58.46150891690558, -34.604009767995265],
     [-58.46098870428058, -34.60414229872641],
     [-58.4608698080395, -34.60417257908068],
     [-58.45993958675982, -34.60440953645633],
     [-58.45952446888629, -34.60451593617308]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_6',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 969.0,
   'VIVIEND': 426.0,
   'HOGARES': 385.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.050678599101543,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46300073754803, -34.60599726352189],
     [-58.46355322815225, -34.60488555669991],
     [-58.46227628446579, -34.604338509696305],
     [-58.46172352492654, -34.605452816501],
     [-58.46058379111055, -34.60496723251289],
     [-58.46003611498908, -34.60608315138385],
     [-58.46117100614202, -34.60656662763574],
     [-58.46132082127446, -34.60663043303335],
     [-58.462452064937196, -34.60711248881652],
     [-58.46252650541112, -34.60695150103452],
     [-58.46300073754803, -34.60599726352189]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_7',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 711.0,
   'VIVIEND': 325.0,
   'HOGARES': 270.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.037544965439558,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46300073754803, -34.60599726352189],
     [-58.46252650541112, -34.60695150103452],
     [-58.462452064937196, -34.60711248881652],
     [-58.462639953834774, -34.60719249004348],
     [-58.46370367068326, -34.6076429140186],
     [-58.46382001675027, -34.60769284319702],
     [-58.464309823883866, -34.60669782541366],
     [-58.464368078773546, -34.606581766847356],
     [-58.46492540978227, -34.605472307402586],
     [-58.463742390646146, -34.604966542177735],
     [-58.46355322815225, -34.60488555669991],
     [-58.46300073754803, -34.60599726352189]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_8',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 712.0,
   'VIVIEND': 313.0,
   'HOGARES': 256.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.045301116608113,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.464368078773546, -34.606581766847356],
     [-58.464309823883866, -34.60669782541366],
     [-58.46382001675027, -34.60769284319702],
     [-58.464587086615914, -34.60802185186124],
     [-58.46535974104048, -34.607005064381426],
     [-58.4666878500494, -34.607571795763704],
     [-58.46745843055534, -34.606554431599314],
     [-58.46731755405417, -34.6064945771105],
     [-58.466131524908114, -34.60598791974595],
     [-58.46598008897339, -34.6059232047877],
     [-58.46492540978227, -34.605472307402586],
     [-58.464368078773546, -34.606581766847356]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_21_9',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 537.0,
   'VIVIEND': 268.0,
   'HOGARES': 218.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.018210126379132,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4666878500494, -34.607571795763704],
     [-58.46535974104048, -34.607005064381426],
     [-58.464587086615914, -34.60802185186124],
     [-58.464751301338964, -34.60809234303025],
     [-58.464899759162435, -34.608155298959296],
     [-58.46518049241494, -34.60827444995775],
     [-58.46591639905457, -34.60859021126508],
     [-58.4666878500494, -34.607571795763704]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_1',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 904.0,
   'VIVIEND': 379.0,
   'HOGARES': 345.0,
   'HOGARES_': 16.0,
   'AREA_KM': 0.062978560918331,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46282665406473, -34.60949794059902],
     [-58.461593254732726, -34.60885405465387],
     [-58.461040967158844, -34.60996997727805],
     [-58.46122639066919, -34.610072727360055],
     [-58.4620932113651, -34.61052795141404],
     [-58.46225018894476, -34.61061062912647],
     [-58.46218400690235, -34.61073844727316],
     [-58.46165769514103, -34.611733033012804],
     [-58.46180930848783, -34.61181049990206],
     [-58.46310178119883, -34.61248804552781],
     [-58.46381418983965, -34.61143457819869],
     [-58.464468237354055, -34.610467376013005],
     [-58.46453194667226, -34.61038821920684],
     [-58.46282665406473, -34.60949794059902]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_10',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 777.0,
   'VIVIEND': 394.0,
   'HOGARES': 307.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.06100914494127,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.461107775456995, -34.61279029278676],
     [-58.46010865943927, -34.612242522884884],
     [-58.459953043473135, -34.61216801157831],
     [-58.45988574909891, -34.61230392710521],
     [-58.45943666031788, -34.61320315156637],
     [-58.458944287064014, -34.61418885275939],
     [-58.45884879475534, -34.61433258378644],
     [-58.45979384496943, -34.614692332283],
     [-58.460067779082436, -34.6147949452758],
     [-58.46126522659689, -34.615243632176245],
     [-58.46144692036509, -34.61493482794433],
     [-58.461853659882436, -34.61433348671757],
     [-58.46241328979786, -34.61350601521293],
     [-58.461107775456995, -34.61279029278676]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_11',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 701.0,
   'VIVIEND': 284.0,
   'HOGARES': 248.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.039883022354066,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46438384567577, -34.615525674352966],
     [-58.46303577848388, -34.61489018553505],
     [-58.46359846784737, -34.6141557378746],
     [-58.46241328979786, -34.61350601521293],
     [-58.461853659882436, -34.61433348671757],
     [-58.46144692036509, -34.61493482794433],
     [-58.46126522659689, -34.615243632176245],
     [-58.4624304036101, -34.615680123991],
     [-58.462604342185664, -34.61574526581047],
     [-58.46353502888405, -34.61609054845334],
     [-58.4637733662861, -34.616175617938275],
     [-58.463866128901614, -34.61620871603857],
     [-58.46438384567577, -34.615525674352966]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_2',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 977.0,
   'VIVIEND': 402.0,
   'HOGARES': 358.0,
   'HOGARES_': 36.0,
   'AREA_KM': 0.058906604654223,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46381418983965, -34.61143457819869],
     [-58.46310178119883, -34.61248804552781],
     [-58.46419827856758, -34.61306290272379],
     [-58.46436701770417, -34.61315269028998],
     [-58.46505088632219, -34.61226013359206],
     [-58.465144918172356, -34.612137243001776],
     [-58.46643537905969, -34.61282095056902],
     [-58.46711700793859, -34.61192295971199],
     [-58.46721410248418, -34.611795701161405],
     [-58.46724834101721, -34.61175084021403],
     [-58.46596112657114, -34.6110636902934],
     [-58.46534231378255, -34.61073334926892],
     [-58.465281070761186, -34.610673561142804],
     [-58.465223324240306, -34.610753352023536],
     [-58.46453194667226, -34.61038821920684],
     [-58.464468237354055, -34.610467376013005],
     [-58.46381418983965, -34.61143457819869]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_3',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 996.0,
   'VIVIEND': 419.0,
   'HOGARES': 360.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.065334202507019,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46566063971338, -34.61384133552709],
     [-58.46555553399571, -34.61397986071872],
     [-58.46488775533932, -34.61486087028102],
     [-58.46498537270803, -34.614913263439036],
     [-58.46603404275282, -34.61546690737522],
     [-58.46707880829074, -34.616018429687244],
     [-58.46786453920274, -34.61500606388258],
     [-58.46680700390723, -34.61444736545883],
     [-58.46758028684612, -34.61342732549815],
     [-58.46768325921159, -34.61329147472355],
     [-58.468358746496214, -34.612404604138206],
     [-58.467799625245384, -34.612107160572094],
     [-58.46721410248418, -34.611795701161405],
     [-58.46711700793859, -34.61192295971199],
     [-58.46643537905969, -34.61282095056902],
     [-58.46566063971338, -34.61384133552709]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_4',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 694.0,
   'VIVIEND': 328.0,
   'HOGARES': 265.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.048402458519936,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47161919352416, -34.6143211916505],
     [-58.47149354114142, -34.61419655148918],
     [-58.47135928183236, -34.614031136701215],
     [-58.47122136709394, -34.6139314974046],
     [-58.47104563376133, -34.61383580424976],
     [-58.470759333457366, -34.61368201894711],
     [-58.470570483242604, -34.613581396336414],
     [-58.47034398284115, -34.61346070514661],
     [-58.469438073036926, -34.61297878123279],
     [-58.46890756485504, -34.61269662305444],
     [-58.468358746496214, -34.612404604138206],
     [-58.46768325921159, -34.61329147472355],
     [-58.46758028684612, -34.61342732549815],
     [-58.468650165874124, -34.6139939041243],
     [-58.46978420240308, -34.61459441364597],
     [-58.47092166264577, -34.61519674334105],
     [-58.47161919352416, -34.6143211916505]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_5',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 893.0,
   'VIVIEND': 378.0,
   'HOGARES': 310.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.064532019786,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.468650165874124, -34.6139939041243],
     [-58.46758028684612, -34.61342732549815],
     [-58.46680700390723, -34.61444736545883],
     [-58.46786453920274, -34.61500606388258],
     [-58.46804913018353, -34.615103592219384],
     [-58.468999520746415, -34.615605524208],
     [-58.46821396831169, -34.61661761552094],
     [-58.469323333394655, -34.61720327086352],
     [-58.4701232741798, -34.61619905904043],
     [-58.47052255599233, -34.61569790185879],
     [-58.47092166264577, -34.61519674334105],
     [-58.46978420240308, -34.61459441364597],
     [-58.468650165874124, -34.6139939041243]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_6',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 1032.0,
   'VIVIEND': 488.0,
   'HOGARES': 409.0,
   'HOGARES_': 29.0,
   'AREA_KM': 0.051873537216544,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46821396831169, -34.61661761552094],
     [-58.468999520746415, -34.615605524208],
     [-58.46804913018353, -34.615103592219384],
     [-58.46786453920274, -34.61500606388258],
     [-58.46707880829074, -34.616018429687244],
     [-58.46616307765006, -34.617198119761575],
     [-58.46736085192333, -34.617716606540384],
     [-58.46803526136086, -34.61800855383711],
     [-58.46819685883298, -34.618091786979505],
     [-58.46849364702366, -34.61824473260632],
     [-58.469323333394655, -34.61720327086352],
     [-58.46821396831169, -34.61661761552094]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_7',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 856.0,
   'VIVIEND': 406.0,
   'HOGARES': 345.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.039364023320615,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46603404275282, -34.61546690737522],
     [-58.46498537270803, -34.614913263439036],
     [-58.46488775533932, -34.61486087028102],
     [-58.46438384567577, -34.615525674352966],
     [-58.463866128901614, -34.61620871603857],
     [-58.46393878874265, -34.616234631097235],
     [-58.46494283008023, -34.616669903178206],
     [-58.46507758894901, -34.616728281538364],
     [-58.46605174272935, -34.61714995334085],
     [-58.46616307765006, -34.617198119761575],
     [-58.46707880829074, -34.616018429687244],
     [-58.46603404275282, -34.61546690737522]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_8',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 865.0,
   'VIVIEND': 346.0,
   'HOGARES': 269.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.068051252151191,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46643537905969, -34.61282095056902],
     [-58.465144918172356, -34.612137243001776],
     [-58.46505088632219, -34.61226013359206],
     [-58.46436701770417, -34.61315269028998],
     [-58.46419827856758, -34.61306290272379],
     [-58.46310178119883, -34.61248804552781],
     [-58.46241328979786, -34.61350601521293],
     [-58.46359846784737, -34.6141557378746],
     [-58.46303577848388, -34.61489018553505],
     [-58.46438384567577, -34.615525674352966],
     [-58.46488775533932, -34.61486087028102],
     [-58.46555553399571, -34.61397986071872],
     [-58.46566063971338, -34.61384133552709],
     [-58.46643537905969, -34.61282095056902]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_22_9',
   'BARRIO': 'VILLA GRAL. MITRE',
   'COMUNA': '11',
   'POBLACI': 763.0,
   'VIVIEND': 318.0,
   'HOGARES': 269.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.052526927470505,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46310178119883, -34.61248804552781],
     [-58.46180930848783, -34.61181049990206],
     [-58.46165769514103, -34.611733033012804],
     [-58.46218400690235, -34.61073844727316],
     [-58.46225018894476, -34.61061062912647],
     [-58.4620932113651, -34.61052795141404],
     [-58.46122639066919, -34.610072727360055],
     [-58.461040967158844, -34.60996997727805],
     [-58.4604752062974, -34.611113080368845],
     [-58.459953043473135, -34.61216801157831],
     [-58.46010865943927, -34.612242522884884],
     [-58.461107775456995, -34.61279029278676],
     [-58.46241328979786, -34.61350601521293],
     [-58.46310178119883, -34.61248804552781]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 693.0,
   'VIVIEND': 337.0,
   'HOGARES': 264.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.072791427314699,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5120880211477, -34.59785779549757],
     [-58.51145009815922, -34.59746839875454],
     [-58.51121564824062, -34.597323419761864],
     [-58.510783809272574, -34.59705633345797],
     [-58.51013281808539, -34.59777617567704],
     [-58.50952530702825, -34.598448039262465],
     [-58.5094314303766, -34.59855093107915],
     [-58.5088404197583, -34.59920542315413],
     [-58.5076655364421, -34.598480429332945],
     [-58.50753740872348, -34.59840110919613],
     [-58.50703064576386, -34.59895982311076],
     [-58.50691582753762, -34.599086767905156],
     [-58.50807324861808, -34.59980149353742],
     [-58.50821969540827, -34.599891933169985],
     [-58.50869371150214, -34.60018464667646],
     [-58.50952265130329, -34.60069652134707],
     [-58.51014379656504, -34.600009722938545],
     [-58.510738004466276, -34.599353994581364],
     [-58.510828338217856, -34.599252824934695],
     [-58.511435503768844, -34.59858060297361],
     [-58.51162972041523, -34.59836664908612],
     [-58.5120880211477, -34.59785779549757]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 773.0,
   'VIVIEND': 368.0,
   'HOGARES': 317.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.058116387479581,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5023109425733, -34.59961462438078],
     [-58.50161338066808, -34.600382394380816],
     [-58.502492286394414, -34.600926273123285],
     [-58.503308549834195, -34.60082867895841],
     [-58.5041141663322, -34.60073235056882],
     [-58.50567923710351, -34.60054518712994],
     [-58.50577196663668, -34.600350715211796],
     [-58.5062947474187, -34.59977298658332],
     [-58.50615571561558, -34.59968909138149],
     [-58.50499073024099, -34.59896899797661],
     [-58.5043223094983, -34.599706561754516],
     [-58.50298116907383, -34.59887763439522],
     [-58.502416405660206, -34.5994985321902],
     [-58.5023109425733, -34.59961462438078]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 740.0,
   'VIVIEND': 319.0,
   'HOGARES': 254.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.067615378038764,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.503308549834195, -34.60082867895841],
     [-58.502492286394414, -34.600926273123285],
     [-58.5028032328575, -34.60111877951781],
     [-58.502958791707805, -34.60121485632852],
     [-58.50304696460988, -34.60126933496998],
     [-58.5042611214372, -34.60201950073261],
     [-58.50494249686055, -34.60244046943879],
     [-58.50585858542887, -34.60250282572268],
     [-58.507119955407155, -34.60258864177371],
     [-58.5077750828424, -34.602628754155184],
     [-58.50823241024992, -34.602123155224014],
     [-58.5069298701289, -34.60131820119467],
     [-58.50567923710351, -34.60054518712994],
     [-58.5041141663322, -34.60073235056882],
     [-58.503308549834195, -34.60082867895841]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_12',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 775.0,
   'VIVIEND': 327.0,
   'HOGARES': 282.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.073666924905088,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50747517592093, -34.6029476252991],
     [-58.507798656130944, -34.602630324968295],
     [-58.5077750828424, -34.602628754155184],
     [-58.507119955407155, -34.60258864177371],
     [-58.50585858542887, -34.60250282572268],
     [-58.50494249686055, -34.60244046943879],
     [-58.50521477636957, -34.60260875734843],
     [-58.50556637291286, -34.60282596110358],
     [-58.50537689745533, -34.60303546685829],
     [-58.5047725481372, -34.60371110798916],
     [-58.50401854477437, -34.60455398205091],
     [-58.50313283951226, -34.60554408000397],
     [-58.50300600565952, -34.605688349129075],
     [-58.50318372208647, -34.605793714146664],
     [-58.50373059029014, -34.60611740875019],
     [-58.503844070895845, -34.60618462489371],
     [-58.50413629273984, -34.606357556320816],
     [-58.504318015904225, -34.60646460847455],
     [-58.50518430972905, -34.60549739644172],
     [-58.505306203333014, -34.605360309963324],
     [-58.505411412840814, -34.60524196183195],
     [-58.50607041813733, -34.60451143843774],
     [-58.50671153698019, -34.60380070683992],
     [-58.506867560237886, -34.60362994404559],
     [-58.507490123211504, -34.60294855572026],
     [-58.50747517592093, -34.6029476252991]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 800.0,
   'VIVIEND': 374.0,
   'HOGARES': 292.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.05912986134541,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5094831975329, -34.59625189819385],
     [-58.50905043253543, -34.595984172247014],
     [-58.50902604069856, -34.59598066639874],
     [-58.507851706476636, -34.595811872760805],
     [-58.50752897019275, -34.59616805310997],
     [-58.50692085334634, -34.5968391998983],
     [-58.506829625594335, -34.596940615532255],
     [-58.50813489662693, -34.597742672083136],
     [-58.5094314303766, -34.59855093107915],
     [-58.50952530702825, -34.598448039262465],
     [-58.51013281808539, -34.59777617567704],
     [-58.510783809272574, -34.59705633345797],
     [-58.5094831975329, -34.59625189819385]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 687.0,
   'VIVIEND': 305.0,
   'HOGARES': 240.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.06046017598708,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.507851706476636, -34.595811872760805],
     [-58.50665400096979, -34.595627589123914],
     [-58.50602257394016, -34.595530489603995],
     [-58.50449088394252, -34.595324976584635],
     [-58.50417780168653, -34.59526812924604],
     [-58.50258006055381, -34.595029855318174],
     [-58.50227573963689, -34.59514554804712],
     [-58.502275523806276, -34.59514563009839],
     [-58.503561908064796, -34.595941555460236],
     [-58.504898492490355, -34.59676850657064],
     [-58.50623535895985, -34.59759558366456],
     [-58.506829625594335, -34.596940615532255],
     [-58.50692085334634, -34.5968391998983],
     [-58.50752897019275, -34.59616805310997],
     [-58.507851706476636, -34.595811872760805]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 619.0,
   'VIVIEND': 271.0,
   'HOGARES': 210.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.055930999437451,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50561309230199, -34.59828229242757],
     [-58.50581533317716, -34.5984070820048],
     [-58.50691582753762, -34.599086767905156],
     [-58.50703064576386, -34.59895982311076],
     [-58.50753740872348, -34.59840110919613],
     [-58.5076655364421, -34.598480429332945],
     [-58.5088404197583, -34.59920542315413],
     [-58.5094314303766, -34.59855093107915],
     [-58.50813489662693, -34.597742672083136],
     [-58.506829625594335, -34.596940615532255],
     [-58.50623535895985, -34.59759558366456],
     [-58.504898492490355, -34.59676850657064],
     [-58.50438644436126, -34.59733249324858],
     [-58.504274177484085, -34.59745598396834],
     [-58.50561309230199, -34.59828229242757]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 565.0,
   'VIVIEND': 312.0,
   'HOGARES': 233.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.073104985197291,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50567923710351, -34.60054518712994],
     [-58.5069298701289, -34.60131820119467],
     [-58.50823241024992, -34.602123155224014],
     [-58.508900474451366, -34.60138444368627],
     [-58.50952265130329, -34.60069652134707],
     [-58.50869371150214, -34.60018464667646],
     [-58.50821969540827, -34.599891933169985],
     [-58.50807324861808, -34.59980149353742],
     [-58.50691582753762, -34.599086767905156],
     [-58.50581533317716, -34.5984070820048],
     [-58.50561309230199, -34.59828229242757],
     [-58.50499073024099, -34.59896899797661],
     [-58.50615571561558, -34.59968909138149],
     [-58.5062947474187, -34.59977298658332],
     [-58.50577196663668, -34.600350715211796],
     [-58.50567923710351, -34.60054518712994]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 755.0,
   'VIVIEND': 349.0,
   'HOGARES': 287.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.05835188156116,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.504274177484085, -34.59745598396834],
     [-58.50438644436126, -34.59733249324858],
     [-58.504898492490355, -34.59676850657064],
     [-58.503561908064796, -34.595941555460236],
     [-58.502275523806276, -34.59514563009839],
     [-58.502156321382685, -34.59518996510553],
     [-58.501601706328024, -34.595801208194864],
     [-58.50172914481356, -34.59588412642243],
     [-58.50293707800048, -34.596630575602525],
     [-58.50241071807158, -34.59721089698142],
     [-58.50231777183097, -34.59731684416054],
     [-58.50365112842255, -34.59814099285033],
     [-58.50499073024099, -34.59896899797661],
     [-58.50561309230199, -34.59828229242757],
     [-58.504274177484085, -34.59745598396834]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 789.0,
   'VIVIEND': 319.0,
   'HOGARES': 283.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.061490645161383,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501601706328024, -34.595801208194864],
     [-58.500977712081394, -34.59648880958883],
     [-58.500309360408124, -34.59722536574106],
     [-58.501520023338415, -34.597967109564735],
     [-58.501649935193036, -34.598050942562985],
     [-58.501788536565954, -34.59814047694236],
     [-58.50298116907383, -34.59887763439522],
     [-58.5043223094983, -34.599706561754516],
     [-58.50499073024099, -34.59896899797661],
     [-58.50365112842255, -34.59814099285033],
     [-58.50231777183097, -34.59731684416054],
     [-58.50241071807158, -34.59721089698142],
     [-58.50293707800048, -34.596630575602525],
     [-58.50172914481356, -34.59588412642243],
     [-58.501601706328024, -34.595801208194864]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 757.0,
   'VIVIEND': 380.0,
   'HOGARES': 299.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.066624460072815,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49778388852006, -34.59681519674404],
     [-58.496574184963684, -34.597264911029356],
     [-58.497403787930104, -34.597776868127674],
     [-58.49762160424251, -34.5979117374314],
     [-58.498942402111496, -34.59872925086636],
     [-58.499535874163705, -34.598081599468834],
     [-58.49964082676959, -34.59796227031987],
     [-58.499736926634505, -34.59785294390401],
     [-58.5002038972896, -34.597341526577615],
     [-58.500309360408124, -34.59722536574106],
     [-58.500977712081394, -34.59648880958883],
     [-58.501601706328024, -34.595801208194864],
     [-58.502156321382685, -34.59518996510553],
     [-58.501191798710664, -34.59554844727133],
     [-58.50010865914155, -34.595950972923056],
     [-58.49952532102494, -34.59616777313506],
     [-58.49903291696959, -34.59635088106467],
     [-58.49894981344654, -34.596381751284746],
     [-58.49778388852006, -34.59681519674404]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_3_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 734.0,
   'VIVIEND': 359.0,
   'HOGARES': 298.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.063923971422426,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501649935193036, -34.598050942562985],
     [-58.501520023338415, -34.597967109564735],
     [-58.500309360408124, -34.59722536574106],
     [-58.5002038972896, -34.597341526577615],
     [-58.499736926634505, -34.59785294390401],
     [-58.49964082676959, -34.59796227031987],
     [-58.499535874163705, -34.598081599468834],
     [-58.498942402111496, -34.59872925086636],
     [-58.50004190837361, -34.59940984411917],
     [-58.50027983750691, -34.59955709701615],
     [-58.50161338066808, -34.600382394380816],
     [-58.5023109425733, -34.59961462438078],
     [-58.502416405660206, -34.5994985321902],
     [-58.50298116907383, -34.59887763439522],
     [-58.501788536565954, -34.59814047694236],
     [-58.501649935193036, -34.598050942562985]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 829.0,
   'VIVIEND': 331.0,
   'HOGARES': 284.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.07297825844115,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52076929668998, -34.60434117126582],
     [-58.52143130490732, -34.60360119711728],
     [-58.51952919396678, -34.60352794198262],
     [-58.5176236781672, -34.603452475599234],
     [-58.5175452070768, -34.603539599773725],
     [-58.518798975751864, -34.604337368303675],
     [-58.51872903931926, -34.60441522472971],
     [-58.51821159247791, -34.604987440288],
     [-58.51813218757301, -34.60507522396911],
     [-58.51759192452932, -34.60567420810162],
     [-58.51697190615517, -34.606361677085346],
     [-58.518239345293985, -34.60714336985001],
     [-58.518859358445766, -34.60645504943808],
     [-58.519478084867906, -34.60576827571639],
     [-58.51999356894484, -34.605196055784326],
     [-58.520069708385904, -34.60511414630599],
     [-58.520159442372744, -34.60501815865285],
     [-58.520264208594554, -34.60490571349331],
     [-58.52076929668998, -34.60434117126582]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 691.0,
   'VIVIEND': 342.0,
   'HOGARES': 281.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.058965532720327,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50986133397922, -34.60548321333005],
     [-58.50962856858767, -34.60533985057561],
     [-58.508592974633466, -34.6046981237189],
     [-58.50779652213537, -34.60557998108725],
     [-58.50703112195023, -34.606427384810644],
     [-58.50717902794999, -34.60651930395048],
     [-58.507528516053604, -34.6067350942034],
     [-58.507669265630454, -34.606821240654],
     [-58.508430914080215, -34.60597136957042],
     [-58.50853996900833, -34.606037878771154],
     [-58.508869608026, -34.60624324999039],
     [-58.50907059414376, -34.606365569654024],
     [-58.509245168844835, -34.606471842525686],
     [-58.5096727918698, -34.606736752339145],
     [-58.50987148295352, -34.60686301526654],
     [-58.51004359145752, -34.606972316145864],
     [-58.51136441610994, -34.607819130760106],
     [-58.5121828968182, -34.606912241195396],
     [-58.511128947874, -34.60626350114844],
     [-58.51064321666769, -34.6059644639112],
     [-58.50986133397922, -34.60548321333005]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 931.0,
   'VIVIEND': 407.0,
   'HOGARES': 313.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.077558522219717,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.510595882570065, -34.60867057190914],
     [-58.51136441610994, -34.607819130760106],
     [-58.51004359145752, -34.606972316145864],
     [-58.50987148295352, -34.60686301526654],
     [-58.5096727918698, -34.606736752339145],
     [-58.509245168844835, -34.606471842525686],
     [-58.50907059414376, -34.606365569654024],
     [-58.508869608026, -34.60624324999039],
     [-58.50853996900833, -34.606037878771154],
     [-58.508430914080215, -34.60597136957042],
     [-58.507669265630454, -34.606821240654],
     [-58.50780805590491, -34.60690619046747],
     [-58.50814800621459, -34.6071186725569],
     [-58.50830520105931, -34.6072154460741],
     [-58.50747195020081, -34.608140765948264],
     [-58.50735550336116, -34.60827073977229],
     [-58.50753067441599, -34.60837391621577],
     [-58.50805133292419, -34.60867907958063],
     [-58.50822207733014, -34.60878345386661],
     [-58.50968637279775, -34.60967819108853],
     [-58.510595882570065, -34.60867057190914]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_12',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 883.0,
   'VIVIEND': 437.0,
   'HOGARES': 352.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.059766509951718,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50703112195023, -34.606427384810644],
     [-58.50779652213537, -34.60557998108725],
     [-58.508592974633466, -34.6046981237189],
     [-58.50773239153182, -34.604164775620056],
     [-58.506938234857564, -34.60504711958164],
     [-58.50617283240884, -34.60589754620447],
     [-58.50519222277494, -34.60698691923487],
     [-58.505418847913575, -34.60712078540605],
     [-58.50589425090154, -34.60739970595534],
     [-58.506062262358455, -34.6074999996986],
     [-58.50717879914034, -34.60816664813027],
     [-58.50735550336116, -34.60827073977229],
     [-58.50747195020081, -34.608140765948264],
     [-58.50830520105931, -34.6072154460741],
     [-58.50814800621459, -34.6071186725569],
     [-58.50780805590491, -34.60690619046747],
     [-58.507669265630454, -34.606821240654],
     [-58.507528516053604, -34.6067350942034],
     [-58.50717902794999, -34.60651930395048],
     [-58.50703112195023, -34.606427384810644]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_13',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 795.0,
   'VIVIEND': 398.0,
   'HOGARES': 327.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.038810949629694,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50607041813733, -34.60451143843774],
     [-58.505411412840814, -34.60524196183195],
     [-58.505306203333014, -34.605360309963324],
     [-58.50518430972905, -34.60549739644172],
     [-58.504318015904225, -34.60646460847455],
     [-58.504480485162716, -34.606560328781796],
     [-58.50498791997161, -34.60686621408116],
     [-58.50519222277494, -34.60698691923487],
     [-58.50617283240884, -34.60589754620447],
     [-58.506938234857564, -34.60504711958164],
     [-58.50773239153182, -34.604164775620056],
     [-58.5075114753915, -34.604027883374805],
     [-58.506867560237886, -34.60362994404559],
     [-58.50671153698019, -34.60380070683992],
     [-58.50607041813733, -34.60451143843774]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 786.0,
   'VIVIEND': 374.0,
   'HOGARES': 297.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.053989840753436,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.515679501321635, -34.60337981318516],
     [-58.51557295006523, -34.60350450889029],
     [-58.51458293725452, -34.60347401798649],
     [-58.51458113020026, -34.603444229640125],
     [-58.51425825142093, -34.60343323959787],
     [-58.514253499595, -34.603461692675175],
     [-58.514185279400984, -34.603460735552076],
     [-58.51411693570512, -34.60353576533337],
     [-58.51492600162155, -34.60403007592177],
     [-58.51505508265738, -34.604110655432265],
     [-58.515174876958945, -34.604185534501454],
     [-58.51620037335008, -34.60481692813648],
     [-58.51632425873358, -34.604893212742],
     [-58.51759192452932, -34.60567420810162],
     [-58.51813218757301, -34.60507522396911],
     [-58.51821159247791, -34.604987440288],
     [-58.51872903931926, -34.60441522472971],
     [-58.518798975751864, -34.604337368303675],
     [-58.5175452070768, -34.603539599773725],
     [-58.5176236781672, -34.603452475599234],
     [-58.515679501321635, -34.60337981318516]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 739.0,
   'VIVIEND': 278.0,
   'HOGARES': 221.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.106258077949524,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51761781507664, -34.60127350625407],
     [-58.517500494287646, -34.6012012341037],
     [-58.5163506408816, -34.60049110187824],
     [-58.515792608242215, -34.601110790798934],
     [-58.51569933078419, -34.60121167775218],
     [-58.51560588294761, -34.60131284640029],
     [-58.515091432894984, -34.601884280366],
     [-58.51501212599623, -34.60197181257508],
     [-58.51449174433993, -34.60254925605824],
     [-58.51440867822135, -34.60264119388968],
     [-58.51498872085099, -34.60299904992338],
     [-58.51560114494456, -34.603376889398064],
     [-58.515679501321635, -34.60337981318516],
     [-58.5176236781672, -34.603452475599234],
     [-58.51952919396678, -34.60352794198262],
     [-58.52143130490732, -34.60360119711728],
     [-58.521445521137785, -34.60360174332476],
     [-58.52079494770561, -34.60322236390963],
     [-58.52077993000432, -34.60322178574145],
     [-58.52015376620353, -34.602836020882954],
     [-58.518887482813554, -34.602055825785726],
     [-58.51761781507664, -34.60127350625407]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 948.0,
   'VIVIEND': 379.0,
   'HOGARES': 296.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.145362897559583,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.514684853674154, -34.599462442931966],
     [-58.51381287064199, -34.59892393076889],
     [-58.51312065956665, -34.59849639602771],
     [-58.513028989183155, -34.598438334486325],
     [-58.51289991812138, -34.598356485125024],
     [-58.512762413033656, -34.598269357323964],
     [-58.5120880211477, -34.59785779549757],
     [-58.51162972041523, -34.59836664908612],
     [-58.511435503768844, -34.59858060297361],
     [-58.510828338217856, -34.599252824934695],
     [-58.510738004466276, -34.599353994581364],
     [-58.51014379656504, -34.600009722938545],
     [-58.51100801418651, -34.60054291212108],
     [-58.51187147615247, -34.601075743318155],
     [-58.513141002459726, -34.601859038259775],
     [-58.51440867822135, -34.60264119388968],
     [-58.51449174433993, -34.60254925605824],
     [-58.51501212599623, -34.60197181257508],
     [-58.515091432894984, -34.601884280366],
     [-58.51560588294761, -34.60131284640029],
     [-58.51569933078419, -34.60121167775218],
     [-58.515792608242215, -34.601110790798934],
     [-58.5163506408816, -34.60049110187824],
     [-58.51508255319626, -34.59970798038766],
     [-58.514684853674154, -34.599462442931966]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 777.0,
   'VIVIEND': 375.0,
   'HOGARES': 308.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.106354207068205,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51411547722153, -34.60296575861087],
     [-58.51460758691185, -34.60298449415897],
     [-58.51498872085099, -34.60299904992338],
     [-58.51440867822135, -34.60264119388968],
     [-58.513141002459726, -34.601859038259775],
     [-58.51187147615247, -34.601075743318155],
     [-58.51100801418651, -34.60054291212108],
     [-58.51014379656504, -34.600009722938545],
     [-58.50952265130329, -34.60069652134707],
     [-58.508900474451366, -34.60138444368627],
     [-58.50823241024992, -34.602123155224014],
     [-58.5077750828424, -34.602628754155184],
     [-58.507798656130944, -34.602630324968295],
     [-58.50747517592093, -34.6029476252991],
     [-58.507490123211504, -34.60294855572026],
     [-58.50775991699272, -34.60298214962397],
     [-58.507996363761286, -34.603129805467624],
     [-58.50806232637053, -34.60305189263126],
     [-58.50850112277685, -34.603075179717095],
     [-58.50851604822956, -34.603113625314926],
     [-58.50863352438544, -34.60316794804659],
     [-58.50881065022098, -34.60297210405886],
     [-58.508973475902614, -34.60279211050806],
     [-58.50904471723308, -34.602713350053364],
     [-58.51031486691542, -34.602800960745384],
     [-58.51048801904062, -34.602812935462545],
     [-58.51095057672073, -34.60283648612611],
     [-58.511280439567905, -34.60285276390156],
     [-58.511578704480804, -34.6028674337078],
     [-58.51165607108201, -34.60278120439105],
     [-58.5119865299757, -34.60279740959522],
     [-58.51217620304403, -34.60280641745734],
     [-58.51227074152857, -34.60281095661061],
     [-58.512474127024404, -34.602820662672414],
     [-58.5130035387298, -34.6028392486217],
     [-58.51315008089243, -34.602928907589636],
     [-58.51411547722153, -34.60296575861087]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 644.0,
   'VIVIEND': 296.0,
   'HOGARES': 241.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.101647905034721,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51411693570512, -34.60353576533337],
     [-58.514185279400984, -34.603460735552076],
     [-58.514253499595, -34.603461692675175],
     [-58.51425825142093, -34.60343323959787],
     [-58.51458113020026, -34.603444229640125],
     [-58.51458293725452, -34.60347401798649],
     [-58.51557295006523, -34.60350450889029],
     [-58.515679501321635, -34.60337981318516],
     [-58.51560114494456, -34.603376889398064],
     [-58.51498872085099, -34.60299904992338],
     [-58.51460758691185, -34.60298449415897],
     [-58.51411547722153, -34.60296575861087],
     [-58.51315008089243, -34.602928907589636],
     [-58.5130035387298, -34.6028392486217],
     [-58.512474127024404, -34.602820662672414],
     [-58.51227074152857, -34.60281095661061],
     [-58.51217620304403, -34.60280641745734],
     [-58.5119865299757, -34.60279740959522],
     [-58.51165607108201, -34.60278120439105],
     [-58.511578704480804, -34.6028674337078],
     [-58.511280439567905, -34.60285276390156],
     [-58.51095057672073, -34.60283648612611],
     [-58.51048801904062, -34.602812935462545],
     [-58.51031486691542, -34.602800960745384],
     [-58.50904471723308, -34.602713350053364],
     [-58.508973475902614, -34.60279211050806],
     [-58.50881065022098, -34.60297210405886],
     [-58.50863352438544, -34.60316794804659],
     [-58.508744617463655, -34.603230160499244],
     [-58.50909901513901, -34.60325608292119],
     [-58.50973396599734, -34.60329978404455],
     [-58.509825866258005, -34.60330707262279],
     [-58.51015488367812, -34.603331452461525],
     [-58.51023775557044, -34.6033376174654],
     [-58.51038518752555, -34.60334861641672],
     [-58.51099730499779, -34.60337548868355],
     [-58.51162356028845, -34.60340157755352],
     [-58.51170109155286, -34.60344992734552],
     [-58.51230162996863, -34.60348123439424],
     [-58.51250057600645, -34.60475426816503],
     [-58.513770078763464, -34.60553706310376],
     [-58.51385306333891, -34.60544519620688],
     [-58.51443607673412, -34.60479768873668],
     [-58.51570491679266, -34.60558025254039],
     [-58.51697190615517, -34.606361677085346],
     [-58.51759192452932, -34.60567420810162],
     [-58.51632425873358, -34.604893212742],
     [-58.51620037335008, -34.60481692813648],
     [-58.515174876958945, -34.604185534501454],
     [-58.51505508265738, -34.604110655432265],
     [-58.51492600162155, -34.60403007592177],
     [-58.51411693570512, -34.60353576533337]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 727.0,
   'VIVIEND': 337.0,
   'HOGARES': 279.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.074164603855371,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51564008858631, -34.60784009719805],
     [-58.51690643113459, -34.60862279001677],
     [-58.51757361755629, -34.60788227159881],
     [-58.518239345293985, -34.60714336985001],
     [-58.51697190615517, -34.606361677085346],
     [-58.51570491679266, -34.60558025254039],
     [-58.51443607673412, -34.60479768873668],
     [-58.51385306333891, -34.60544519620688],
     [-58.513770078763464, -34.60553706310376],
     [-58.51503883849107, -34.60631935207645],
     [-58.514951258515175, -34.60641664433658],
     [-58.514370959478896, -34.60705795569064],
     [-58.5144855580342, -34.60712656991651],
     [-58.51564008858631, -34.60784009719805]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 700.0,
   'VIVIEND': 346.0,
   'HOGARES': 282.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.069557417008877,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.513673449288035, -34.607830371174224],
     [-58.51494173140862, -34.60861174554054],
     [-58.51621157104991, -34.609394091854995],
     [-58.516351071747074, -34.60923916959911],
     [-58.51690643113459, -34.60862279001677],
     [-58.51564008858631, -34.60784009719805],
     [-58.5144855580342, -34.60712656991651],
     [-58.514370959478896, -34.60705795569064],
     [-58.514951258515175, -34.60641664433658],
     [-58.51503883849107, -34.60631935207645],
     [-58.513770078763464, -34.60553706310376],
     [-58.51250057600645, -34.60475426816503],
     [-58.51274596498469, -34.606058691141385],
     [-58.51283638141484, -34.606567533557715],
     [-58.512985510946436, -34.60740649655925],
     [-58.513673449288035, -34.607830371174224]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_4_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 828.0,
   'VIVIEND': 428.0,
   'HOGARES': 309.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.124197465338632,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51250057600645, -34.60475426816503],
     [-58.51230162996863, -34.60348123439424],
     [-58.51170109155286, -34.60344992734552],
     [-58.51162356028845, -34.60340157755352],
     [-58.51099730499779, -34.60337548868355],
     [-58.51038518752555, -34.60334861641672],
     [-58.51023775557044, -34.6033376174654],
     [-58.51015488367812, -34.603331452461525],
     [-58.509825866258005, -34.60330707262279],
     [-58.50973396599734, -34.60329978404455],
     [-58.50909901513901, -34.60325608292119],
     [-58.508744617463655, -34.603230160499244],
     [-58.50863352438544, -34.60316794804659],
     [-58.50851604822956, -34.603113625314926],
     [-58.50850112277685, -34.603075179717095],
     [-58.50806232637053, -34.60305189263126],
     [-58.507996363761286, -34.603129805467624],
     [-58.50775991699272, -34.60298214962397],
     [-58.507490123211504, -34.60294855572026],
     [-58.506867560237886, -34.60362994404559],
     [-58.5075114753915, -34.604027883374805],
     [-58.50773239153182, -34.604164775620056],
     [-58.508592974633466, -34.6046981237189],
     [-58.50962856858767, -34.60533985057561],
     [-58.50986133397922, -34.60548321333005],
     [-58.51064321666769, -34.6059644639112],
     [-58.511128947874, -34.60626350114844],
     [-58.5121828968182, -34.606912241195396],
     [-58.51239769312795, -34.60704447945948],
     [-58.512566906398064, -34.60714863704578],
     [-58.512985510946436, -34.60740649655925],
     [-58.51283638141484, -34.606567533557715],
     [-58.51274596498469, -34.606058691141385],
     [-58.51250057600645, -34.60475426816503]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 704.0,
   'VIVIEND': 298.0,
   'HOGARES': 242.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.196289713836968,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5284889911639, -34.61155203398592],
     [-58.528760837270944, -34.61135011370871],
     [-58.525561198227884, -34.60453454880437],
     [-58.52528373863415, -34.604720384331976],
     [-58.52472271433321, -34.605096139968886],
     [-58.52472433951631, -34.60509958653594],
     [-58.52430893518082, -34.60540268810031],
     [-58.523471305958196, -34.60601184812617],
     [-58.52333135943713, -34.60611367957066],
     [-58.52286852834747, -34.606449546626145],
     [-58.52269385326282, -34.60658301456043],
     [-58.522593878186676, -34.60665932755479],
     [-58.522468443156654, -34.60675509912772],
     [-58.52183364907842, -34.607219287342346],
     [-58.52273479175091, -34.607844629491176],
     [-58.52370573201807, -34.60850725442209],
     [-58.52515867724483, -34.609498573288384],
     [-58.52623328248306, -34.61023182983766],
     [-58.526641569254046, -34.610510422597685],
     [-58.527238366540026, -34.610917648282445],
     [-58.527575074196314, -34.611147331502785],
     [-58.527950378268734, -34.61195209706065],
     [-58.5284889911639, -34.61155203398592]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 811.0,
   'VIVIEND': 412.0,
   'HOGARES': 334.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.051708639819384,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52482495558374, -34.612688005743266],
     [-58.52432070852897, -34.61234691959399],
     [-58.52390952484893, -34.612068813568975],
     [-58.52311715271884, -34.61269520153352],
     [-58.522737503756524, -34.61244052692185],
     [-58.52215256751676, -34.61204792159085],
     [-58.52203334868879, -34.611968542105295],
     [-58.5213432054247, -34.612515290442],
     [-58.52291217271792, -34.613461438211175],
     [-58.52328780301071, -34.613687944902864],
     [-58.52338324479478, -34.613745503739395],
     [-58.523862585883755, -34.61403428165021],
     [-58.524320455635426, -34.61431018104351],
     [-58.52445834924591, -34.614409830720824],
     [-58.52451204084356, -34.61444853634807],
     [-58.52482346696409, -34.614234291304854],
     [-58.52501221583858, -34.614109757055886],
     [-58.525113863655626, -34.61403519723238],
     [-58.5252463289821, -34.613937945221075],
     [-58.52593521290911, -34.613433640854495],
     [-58.52527926716738, -34.61299524179264],
     [-58.52482495558374, -34.612688005743266]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 867.0,
   'VIVIEND': 372.0,
   'HOGARES': 316.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.089353842275009,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.520069708385904, -34.60511414630599],
     [-58.51999356894484, -34.605196055784326],
     [-58.519478084867906, -34.60576827571639],
     [-58.520746645508645, -34.606549730712366],
     [-58.52183364907842, -34.607219287342346],
     [-58.522468443156654, -34.60675509912772],
     [-58.522593878186676, -34.60665932755479],
     [-58.52269385326282, -34.60658301456043],
     [-58.52286852834747, -34.606449546626145],
     [-58.52333135943713, -34.60611367957066],
     [-58.523471305958196, -34.60601184812617],
     [-58.52430893518082, -34.60540268810031],
     [-58.52267711704978, -34.60439144620518],
     [-58.522516672549024, -34.60429201666752],
     [-58.52143130490732, -34.60360119711728],
     [-58.52076929668998, -34.60434117126582],
     [-58.520264208594554, -34.60490571349331],
     [-58.520159442372744, -34.60501815865285],
     [-58.520069708385904, -34.60511414630599]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 977.0,
   'VIVIEND': 380.0,
   'HOGARES': 353.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.062326306250215,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.518239345293985, -34.60714336985001],
     [-58.51757361755629, -34.60788227159881],
     [-58.51884176693214, -34.60866409842236],
     [-58.51940118977915, -34.608043902704345],
     [-58.51950638370773, -34.60792709180046],
     [-58.52024258921616, -34.6083825973592],
     [-58.521040933957785, -34.60779890134514],
     [-58.52183364907842, -34.607219287342346],
     [-58.520746645508645, -34.606549730712366],
     [-58.519478084867906, -34.60576827571639],
     [-58.518859358445766, -34.60645504943808],
     [-58.518239345293985, -34.60714336985001]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 624.0,
   'VIVIEND': 306.0,
   'HOGARES': 252.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.046384480640024,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51690643113459, -34.60862279001677],
     [-58.516351071747074, -34.60923916959911],
     [-58.51621157104991, -34.609394091854995],
     [-58.51733879409799, -34.610088459592795],
     [-58.51748083892872, -34.61017741102416],
     [-58.51772240752788, -34.61022785674929],
     [-58.518539280166294, -34.60962784022823],
     [-58.51939281393702, -34.60900384766586],
     [-58.52024258921616, -34.6083825973592],
     [-58.51950638370773, -34.60792709180046],
     [-58.51940118977915, -34.608043902704345],
     [-58.51884176693214, -34.60866409842236],
     [-58.51757361755629, -34.60788227159881],
     [-58.51690643113459, -34.60862279001677]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 854.0,
   'VIVIEND': 424.0,
   'HOGARES': 339.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.06020074574542,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.518539280166294, -34.60962784022823],
     [-58.51772240752788, -34.61022785674929],
     [-58.51748083892872, -34.61017741102416],
     [-58.51784127786968, -34.61040295551634],
     [-58.51881232688669, -34.61098744914793],
     [-58.519605730941606, -34.610351792592645],
     [-58.52041402018667, -34.609704222228444],
     [-58.521222892700756, -34.60905608277999],
     [-58.52198067793654, -34.608448949145306],
     [-58.52273479175091, -34.607844629491176],
     [-58.52183364907842, -34.607219287342346],
     [-58.521040933957785, -34.60779890134514],
     [-58.52024258921616, -34.6083825973592],
     [-58.51939281393702, -34.60900384766586],
     [-58.518539280166294, -34.60962784022823]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 876.0,
   'VIVIEND': 381.0,
   'HOGARES': 319.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.072781760592699,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52282921129679, -34.61133800440654],
     [-58.52350733226286, -34.610800760713055],
     [-58.52363161826703, -34.61070457083152],
     [-58.523762288574794, -34.610603518415566],
     [-58.524399368490656, -34.61010030472115],
     [-58.52451318058072, -34.61001038690686],
     [-58.52515867724483, -34.609498573288384],
     [-58.52370573201807, -34.60850725442209],
     [-58.52273479175091, -34.607844629491176],
     [-58.52198067793654, -34.608448949145306],
     [-58.521222892700756, -34.60905608277999],
     [-58.52218241649909, -34.60971140114596],
     [-58.52205557797165, -34.609811675363886],
     [-58.52137217724902, -34.61035236436019],
     [-58.52282921129679, -34.61133800440654]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 754.0,
   'VIVIEND': 340.0,
   'HOGARES': 280.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.067432717977151,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51980460756843, -34.61158530548669],
     [-58.52076690945771, -34.61216774525035],
     [-58.5213432054247, -34.612515290442],
     [-58.52203334868879, -34.611968542105295],
     [-58.52282921129679, -34.61133800440654],
     [-58.52137217724902, -34.61035236436019],
     [-58.52205557797165, -34.609811675363886],
     [-58.52218241649909, -34.60971140114596],
     [-58.521222892700756, -34.60905608277999],
     [-58.52041402018667, -34.609704222228444],
     [-58.519605730941606, -34.610351792592645],
     [-58.51881232688669, -34.61098744914793],
     [-58.51963929715894, -34.611485240756025],
     [-58.51980460756843, -34.61158530548669]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 862.0,
   'VIVIEND': 348.0,
   'HOGARES': 307.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.064500835463226,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.522737503756524, -34.61244052692185],
     [-58.52311715271884, -34.61269520153352],
     [-58.52390952484893, -34.612068813568975],
     [-58.52432070852897, -34.61234691959399],
     [-58.52511281245662, -34.611720101380705],
     [-58.52588132497221, -34.61111202279596],
     [-58.526641569254046, -34.610510422597685],
     [-58.52623328248306, -34.61023182983766],
     [-58.52515867724483, -34.609498573288384],
     [-58.52451318058072, -34.61001038690686],
     [-58.524399368490656, -34.61010030472115],
     [-58.523762288574794, -34.610603518415566],
     [-58.52363161826703, -34.61070457083152],
     [-58.52350733226286, -34.610800760713055],
     [-58.52282921129679, -34.61133800440654],
     [-58.52203334868879, -34.611968542105295],
     [-58.52215256751676, -34.61204792159085],
     [-58.522737503756524, -34.61244052692185]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_5_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 842.0,
   'VIVIEND': 326.0,
   'HOGARES': 292.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.055249795250684,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.527575074196314, -34.611147331502785],
     [-58.527238366540026, -34.610917648282445],
     [-58.526641569254046, -34.610510422597685],
     [-58.52588132497221, -34.61111202279596],
     [-58.52511281245662, -34.611720101380705],
     [-58.52432070852897, -34.61234691959399],
     [-58.52482495558374, -34.612688005743266],
     [-58.52527926716738, -34.61299524179264],
     [-58.52593521290911, -34.613433640854495],
     [-58.52634154159936, -34.61313624315867],
     [-58.526746249936515, -34.612840042143795],
     [-58.5271547010214, -34.612541020863205],
     [-58.52755719018463, -34.612246367618205],
     [-58.52795141640499, -34.61195432311573],
     [-58.527950378268734, -34.61195209706065],
     [-58.527575074196314, -34.611147331502785]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 698.0,
   'VIVIEND': 337.0,
   'HOGARES': 317.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.021695002345696,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51239769312795, -34.60704447945948],
     [-58.5121828968182, -34.606912241195396],
     [-58.51136441610994, -34.607819130760106],
     [-58.51201597713563, -34.608236831940296],
     [-58.512835060039365, -34.60876192696244],
     [-58.513583227932024, -34.607931184702515],
     [-58.513673449288035, -34.607830371174224],
     [-58.512985510946436, -34.60740649655925],
     [-58.512566906398064, -34.60714863704578],
     [-58.51239769312795, -34.60704447945948]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 799.0,
   'VIVIEND': 317.0,
   'HOGARES': 271.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.071216581353351,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.513784925648736, -34.616150067554855],
     [-58.51366811072012, -34.61623744129619],
     [-58.513502508581624, -34.61636068070538],
     [-58.5133850135808, -34.61645129392736],
     [-58.512445045934925, -34.61717880124937],
     [-58.51304905669067, -34.61771792533833],
     [-58.51373157176668, -34.61832701429815],
     [-58.51437134027995, -34.617845754063126],
     [-58.51462821507505, -34.61765064294703],
     [-58.51503025529627, -34.617345186248606],
     [-58.51542684355823, -34.61704388554131],
     [-58.516217116766065, -34.61644353503703],
     [-58.516392078766074, -34.616310639836726],
     [-58.51698796542576, -34.61585551208145],
     [-58.516828919589706, -34.61570353885891],
     [-58.51611339634296, -34.615028213092195],
     [-58.516046319314434, -34.61496493189103],
     [-58.51577499077508, -34.61464870874027],
     [-58.51497511432612, -34.61526230024764],
     [-58.514182364500606, -34.61584870005491],
     [-58.51391808762344, -34.616050574032116],
     [-58.513784925648736, -34.616150067554855]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 859.0,
   'VIVIEND': 357.0,
   'HOGARES': 314.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.065065893456995,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51434216188604, -34.61887190382976],
     [-58.514411966083976, -34.6189342692679],
     [-58.515093989702635, -34.61954292814261],
     [-58.51581054288084, -34.6201824134912],
     [-58.51592526739048, -34.620284758885774],
     [-58.51634828457198, -34.62066225342456],
     [-58.51713960701971, -34.62006098132544],
     [-58.517606357654756, -34.61970640235768],
     [-58.516391979701844, -34.618537916836345],
     [-58.51671900526769, -34.618284741674785],
     [-58.5160165793275, -34.61761018449383],
     [-58.515721923240086, -34.61732678880748],
     [-58.51542684355823, -34.61704388554131],
     [-58.51503025529627, -34.617345186248606],
     [-58.51462821507505, -34.61765064294703],
     [-58.51437134027995, -34.617845754063126],
     [-58.51373157176668, -34.61832701429815],
     [-58.51434216188604, -34.61887190382976]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 967.0,
   'VIVIEND': 443.0,
   'HOGARES': 351.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.081865707672887,
   'partidas': 23.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51206576786362, -34.609616053634966],
     [-58.512835060039365, -34.60876192696244],
     [-58.51201597713563, -34.608236831940296],
     [-58.51136441610994, -34.607819130760106],
     [-58.510595882570065, -34.60867057190914],
     [-58.50968637279775, -34.60967819108853],
     [-58.510351731965514, -34.61008483924288],
     [-58.511184952378805, -34.610593953554826],
     [-58.51245691336955, -34.611371196947275],
     [-58.51309264713792, -34.611759672884475],
     [-58.51372957973433, -34.61214884921333],
     [-58.51384414987912, -34.61202168711101],
     [-58.51442840140661, -34.61137368687564],
     [-58.514565865947596, -34.6112210915422],
     [-58.5139409389422, -34.61081994250644],
     [-58.513315080678424, -34.61041822723983],
     [-58.51222876862679, -34.609720918391105],
     [-58.51206576786362, -34.609616053634966]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 819.0,
   'VIVIEND': 457.0,
   'HOGARES': 347.0,
   'HOGARES_': 27.0,
   'AREA_KM': 0.072520272141635,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.515336594325674, -34.61036546982643],
     [-58.51621157104991, -34.609394091854995],
     [-58.51494173140862, -34.60861174554054],
     [-58.513673449288035, -34.607830371174224],
     [-58.513583227932024, -34.607931184702515],
     [-58.512835060039365, -34.60876192696244],
     [-58.51206576786362, -34.609616053634966],
     [-58.51222876862679, -34.609720918391105],
     [-58.513315080678424, -34.61041822723983],
     [-58.5139409389422, -34.61081994250644],
     [-58.514565865947596, -34.6112210915422],
     [-58.515336594325674, -34.61036546982643]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 916.0,
   'VIVIEND': 392.0,
   'HOGARES': 333.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.142154775756091,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51500405917534, -34.61292747324206],
     [-58.51614358688992, -34.61362374775361],
     [-58.51668809235049, -34.61395639903522],
     [-58.516813413848006, -34.613861412881214],
     [-58.51745977001421, -34.613373724675945],
     [-58.517669713652914, -34.61321334677713],
     [-58.518631987523136, -34.61247818282324],
     [-58.519681675143715, -34.61167634992259],
     [-58.51980460756843, -34.61158530548669],
     [-58.51963929715894, -34.611485240756025],
     [-58.51881232688669, -34.61098744914793],
     [-58.51784127786968, -34.61040295551634],
     [-58.51748083892872, -34.61017741102416],
     [-58.51733879409799, -34.610088459592795],
     [-58.51621157104991, -34.609394091854995],
     [-58.515336594325674, -34.61036546982643],
     [-58.514565865947596, -34.6112210915422],
     [-58.51442840140661, -34.61137368687564],
     [-58.51384414987912, -34.61202168711101],
     [-58.51372957973433, -34.61214884921333],
     [-58.51436813720898, -34.612538937004416],
     [-58.51464140486253, -34.612705935536304],
     [-58.51500405917534, -34.61292747324206]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 732.0,
   'VIVIEND': 417.0,
   'HOGARES': 304.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.103780314129703,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52366826676019, -34.61504699563896],
     [-58.52445834924591, -34.614409830720824],
     [-58.524320455635426, -34.61431018104351],
     [-58.523862585883755, -34.61403428165021],
     [-58.52338324479478, -34.613745503739395],
     [-58.52328780301071, -34.613687944902864],
     [-58.52291217271792, -34.613461438211175],
     [-58.5213432054247, -34.612515290442],
     [-58.52076690945771, -34.61216774525035],
     [-58.51980460756843, -34.61158530548669],
     [-58.519681675143715, -34.61167634992259],
     [-58.518631987523136, -34.61247818282324],
     [-58.519300795319815, -34.61309985321167],
     [-58.519911807912656, -34.613642602442106],
     [-58.52036608767906, -34.61404563246856],
     [-58.5207230371774, -34.614362508973436],
     [-58.52121431643345, -34.61479932137282],
     [-58.521716680272135, -34.61524464761711],
     [-58.52233846436544, -34.615797590651454],
     [-58.52251779787896, -34.6159557439872],
     [-58.52351903417877, -34.615167282700064],
     [-58.52366826676019, -34.61504699563896]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 855.0,
   'VIVIEND': 348.0,
   'HOGARES': 306.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.069116500842959,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52036608767906, -34.61404563246856],
     [-58.519911807912656, -34.613642602442106],
     [-58.519300795319815, -34.61309985321167],
     [-58.518631987523136, -34.61247818282324],
     [-58.517669713652914, -34.61321334677713],
     [-58.518313741571774, -34.613847569015036],
     [-58.51889189162922, -34.6144163948881],
     [-58.51899255515397, -34.61451543407765],
     [-58.519322250188296, -34.61484148226065],
     [-58.519421636466646, -34.61493967660184],
     [-58.51966081147283, -34.61517477899442],
     [-58.519708885284444, -34.6152220105738],
     [-58.51980017457331, -34.61531175758753],
     [-58.52000738783456, -34.61551595841337],
     [-58.52013226232587, -34.61563977426773],
     [-58.52023915184084, -34.615745851805386],
     [-58.52060124423026, -34.616099064566086],
     [-58.52135612480659, -34.616835613206014],
     [-58.52251779787896, -34.6159557439872],
     [-58.52233846436544, -34.615797590651454],
     [-58.521716680272135, -34.61524464761711],
     [-58.52121431643345, -34.61479932137282],
     [-58.5207230371774, -34.614362508973436],
     [-58.52036608767906, -34.61404563246856]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 895.0,
   'VIVIEND': 333.0,
   'HOGARES': 308.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.069062516062506,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.519322250188296, -34.61484148226065],
     [-58.51899255515397, -34.61451543407765],
     [-58.51889189162922, -34.6144163948881],
     [-58.518313741571774, -34.613847569015036],
     [-58.517669713652914, -34.61321334677713],
     [-58.51745977001421, -34.613373724675945],
     [-58.516813413848006, -34.613861412881214],
     [-58.51668809235049, -34.61395639903522],
     [-58.51608072184273, -34.61441688265947],
     [-58.51577499077508, -34.61464870874027],
     [-58.516046319314434, -34.61496493189103],
     [-58.51611339634296, -34.615028213092195],
     [-58.516828919589706, -34.61570353885891],
     [-58.51698796542576, -34.61585551208145],
     [-58.51713789174593, -34.61599868625074],
     [-58.51729412524623, -34.61614685746342],
     [-58.51738916119649, -34.61623702713142],
     [-58.51758843875859, -34.616425672047384],
     [-58.51772140451185, -34.61655138814004],
     [-58.51784141520572, -34.616665208406296],
     [-58.518622462502385, -34.61605681820772],
     [-58.51874889087711, -34.61595971689176],
     [-58.519708885284444, -34.6152220105738],
     [-58.51966081147283, -34.61517477899442],
     [-58.519421636466646, -34.61493967660184],
     [-58.519322250188296, -34.61484148226065]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 740.0,
   'VIVIEND': 349.0,
   'HOGARES': 284.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.070889529914767,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.52013226232587, -34.61563977426773],
     [-58.52000738783456, -34.61551595841337],
     [-58.51980017457331, -34.61531175758753],
     [-58.519708885284444, -34.6152220105738],
     [-58.51874889087711, -34.61595971689176],
     [-58.518622462502385, -34.61605681820772],
     [-58.51784141520572, -34.616665208406296],
     [-58.51793559996307, -34.61675453294565],
     [-58.518274669182524, -34.61707973451286],
     [-58.51764932715426, -34.6175643890851],
     [-58.51751114640679, -34.61767142420008],
     [-58.51763712497169, -34.617790946249094],
     [-58.5177953227629, -34.61794038350826],
     [-58.51790425548532, -34.618044701546985],
     [-58.518739330088856, -34.618844258646774],
     [-58.51887836379467, -34.61873834854052],
     [-58.51952048129313, -34.618243046035644],
     [-58.52028842397587, -34.61765056709047],
     [-58.520411277451814, -34.61755677565833],
     [-58.52135612480659, -34.616835613206014],
     [-58.52060124423026, -34.616099064566086],
     [-58.52023915184084, -34.615745851805386],
     [-58.52013226232587, -34.61563977426773]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_6_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 865.0,
   'VIVIEND': 322.0,
   'HOGARES': 302.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.059409251206875,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51790425548532, -34.618044701546985],
     [-58.5177953227629, -34.61794038350826],
     [-58.51763712497169, -34.617790946249094],
     [-58.51751114640679, -34.61767142420008],
     [-58.51764932715426, -34.6175643890851],
     [-58.518274669182524, -34.61707973451286],
     [-58.51793559996307, -34.61675453294565],
     [-58.51784141520572, -34.616665208406296],
     [-58.51772140451185, -34.61655138814004],
     [-58.51758843875859, -34.616425672047384],
     [-58.51738916119649, -34.61623702713142],
     [-58.51729412524623, -34.61614685746342],
     [-58.51713789174593, -34.61599868625074],
     [-58.51698796542576, -34.61585551208145],
     [-58.516392078766074, -34.616310639836726],
     [-58.516217116766065, -34.61644353503703],
     [-58.51542684355823, -34.61704388554131],
     [-58.515721923240086, -34.61732678880748],
     [-58.5160165793275, -34.61761018449383],
     [-58.51671900526769, -34.618284741674785],
     [-58.516391979701844, -34.618537916836345],
     [-58.517606357654756, -34.61970640235768],
     [-58.51793747398203, -34.619454771448304],
     [-58.5180718271637, -34.61935273766909],
     [-58.51829762110573, -34.61918066138501],
     [-58.518739330088856, -34.618844258646774],
     [-58.51790425548532, -34.618044701546985]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_1',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 2218.0,
   'VIVIEND': 189.0,
   'HOGARES': 171.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.120745554215074,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51240842586629, -34.61362025633923],
     [-58.51206495835254, -34.61400441416423],
     [-58.511966386424454, -34.61411466650123],
     [-58.51182116712237, -34.614277543763805],
     [-58.51171969911945, -34.61438892383585],
     [-58.51108202770076, -34.61508869312321],
     [-58.511555110587416, -34.615368578067184],
     [-58.51186825709771, -34.61555387681249],
     [-58.51232975662528, -34.61582693233686],
     [-58.51276680353675, -34.616085488941145],
     [-58.5133850135808, -34.61645129392736],
     [-58.513502508581624, -34.61636068070538],
     [-58.51366811072012, -34.61623744129619],
     [-58.513784925648736, -34.616150067554855],
     [-58.51391808762344, -34.616050574032116],
     [-58.514182364500606, -34.61584870005491],
     [-58.51497511432612, -34.61526230024764],
     [-58.51577499077508, -34.61464870874027],
     [-58.51608072184273, -34.61441688265947],
     [-58.51668809235049, -34.61395639903522],
     [-58.51614358688992, -34.61362374775361],
     [-58.51500405917534, -34.61292747324206],
     [-58.51464140486253, -34.612705935536304],
     [-58.51436813720898, -34.612538937004416],
     [-58.51372957973433, -34.61214884921333],
     [-58.5134131057347, -34.61250039362402],
     [-58.51300410302316, -34.61295479344368],
     [-58.51289259468439, -34.61307857315935],
     [-58.51270447782247, -34.61328907530906],
     [-58.51240842586629, -34.61362025633923]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_10',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 817.0,
   'VIVIEND': 356.0,
   'HOGARES': 292.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.054081772841506,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.506200515072905, -34.611127881029034],
     [-58.5060450214753, -34.611036245165],
     [-58.50546751151402, -34.61066862778303],
     [-58.505311165090106, -34.610571639099696],
     [-58.50513939744614, -34.610465078002505],
     [-58.504154807015496, -34.609849775463786],
     [-58.50401533475326, -34.60976601896449],
     [-58.50334869298882, -34.61050392764585],
     [-58.50265195875441, -34.611391351233614],
     [-58.50280685336207, -34.611483625424974],
     [-58.503120392869384, -34.611671270598016],
     [-58.503259356089046, -34.61175446487568],
     [-58.503538219786, -34.61191979628854],
     [-58.50367752426655, -34.61200242658521],
     [-58.50392571799126, -34.612151710880504],
     [-58.504063745762664, -34.61223469328083],
     [-58.50464832289044, -34.61258794842054],
     [-58.50481088498236, -34.61267444269759],
     [-58.50492172375863, -34.61255144524397],
     [-58.50509547256549, -34.61235842504349],
     [-58.50519379658928, -34.61224937550626],
     [-58.50529356757194, -34.61213877606925],
     [-58.50544994756549, -34.611963226403326],
     [-58.50556819069102, -34.61183219749261],
     [-58.50568609295713, -34.6117015911248],
     [-58.50580059016718, -34.61157556336098],
     [-58.50588818645359, -34.61147870027954],
     [-58.5060001289763, -34.611354997198944],
     [-58.506091725579566, -34.61125334376031],
     [-58.506200515072905, -34.611127881029034]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_11',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 807.0,
   'VIVIEND': 415.0,
   'HOGARES': 323.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.052546070358992,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.507234086512206, -34.612811682376424],
     [-58.50735905411072, -34.61267515627405],
     [-58.50755203584535, -34.612460294304796],
     [-58.50588818645359, -34.61147870027954],
     [-58.50580059016718, -34.61157556336098],
     [-58.50568609295713, -34.6117015911248],
     [-58.50556819069102, -34.61183219749261],
     [-58.50544994756549, -34.611963226403326],
     [-58.50529356757194, -34.61213877606925],
     [-58.50519379658928, -34.61224937550626],
     [-58.50509547256549, -34.61235842504349],
     [-58.50492172375863, -34.61255144524397],
     [-58.50481088498236, -34.61267444269759],
     [-58.504963053004786, -34.61275551776102],
     [-58.50645326941959, -34.613634720650005],
     [-58.50692036374984, -34.613910329968725],
     [-58.50702354753361, -34.61397120869646],
     [-58.50726663762676, -34.61411161465804],
     [-58.50741412800298, -34.61419677290417],
     [-58.507706980065585, -34.61436687837291],
     [-58.50786623008452, -34.6144594261776],
     [-58.50812346686588, -34.61460729005226],
     [-58.50893172182105, -34.613816273440705],
     [-58.50851600019571, -34.61357030075866],
     [-58.50804924287239, -34.6132940635998],
     [-58.507704587441225, -34.61309010442047],
     [-58.507234086512206, -34.612811682376424]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_12',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 854.0,
   'VIVIEND': 323.0,
   'HOGARES': 306.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.05695657714951,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51276680353675, -34.616085488941145],
     [-58.51232975662528, -34.61582693233686],
     [-58.51186825709771, -34.61555387681249],
     [-58.511555110587416, -34.615368578067184],
     [-58.51108202770076, -34.61508869312321],
     [-58.51065129663273, -34.61483378996586],
     [-58.51023522402819, -34.61458761205586],
     [-58.50978515599147, -34.61432123434977],
     [-58.50925968266192, -34.61401030581094],
     [-58.50893172182105, -34.613816273440705],
     [-58.50812346686588, -34.61460729005226],
     [-58.50824624897667, -34.61467787885647],
     [-58.508454664453076, -34.61479892896305],
     [-58.50860437293725, -34.614885915933684],
     [-58.50897920035564, -34.61510549503866],
     [-58.50914254364094, -34.61520127908403],
     [-58.50941683067191, -34.615366387428786],
     [-58.50953654937541, -34.61543852541031],
     [-58.509742842968876, -34.615566405174185],
     [-58.509827030326996, -34.61561792253732],
     [-58.50997427323346, -34.61570800739146],
     [-58.5101020029289, -34.615785493879656],
     [-58.5102397022948, -34.61586875105874],
     [-58.510402027722336, -34.615966928193124],
     [-58.51064905124522, -34.61611359349894],
     [-58.511076210494174, -34.61636708955816],
     [-58.51153583781949, -34.61663993752094],
     [-58.51197220537447, -34.61689899017135],
     [-58.512445045934925, -34.61717880124937],
     [-58.5133850135808, -34.61645129392736],
     [-58.51276680353675, -34.616085488941145]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_2',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 884.0,
   'VIVIEND': 377.0,
   'HOGARES': 328.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.059272371102154,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51042777452058, -34.61362449801787],
     [-58.5099125985982, -34.614196606251696],
     [-58.50978515599147, -34.61432123434977],
     [-58.51023522402819, -34.61458761205586],
     [-58.51065129663273, -34.61483378996586],
     [-58.51108202770076, -34.61508869312321],
     [-58.51171969911945, -34.61438892383585],
     [-58.51182116712237, -34.614277543763805],
     [-58.511966386424454, -34.61411466650123],
     [-58.51206495835254, -34.61400441416423],
     [-58.51240842586629, -34.61362025633923],
     [-58.51270447782247, -34.61328907530906],
     [-58.51289259468439, -34.61307857315935],
     [-58.51300410302316, -34.61295479344368],
     [-58.5134131057347, -34.61250039362402],
     [-58.51372957973433, -34.61214884921333],
     [-58.51309264713792, -34.611759672884475],
     [-58.51245691336955, -34.611371196947275],
     [-58.51215107694853, -34.61171083224642],
     [-58.51174173063876, -34.61216543930385],
     [-58.51142984471809, -34.6125117654016],
     [-58.51111846694645, -34.612857527095066],
     [-58.51077337767245, -34.61324069605047],
     [-58.51042777452058, -34.61362449801787]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_3',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 786.0,
   'VIVIEND': 371.0,
   'HOGARES': 297.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.059220676740617,
   'partidas': 28.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50949426062622, -34.61248428340366],
     [-58.50941092456824, -34.61257797837575],
     [-58.509150614230876, -34.61286885570826],
     [-58.508837609549, -34.61321869673711],
     [-58.50860606779757, -34.613477448959515],
     [-58.50851600019571, -34.61357030075866],
     [-58.50893172182105, -34.613816273440705],
     [-58.50925968266192, -34.61401030581094],
     [-58.50978515599147, -34.61432123434977],
     [-58.5099125985982, -34.614196606251696],
     [-58.51042777452058, -34.61362449801787],
     [-58.51077337767245, -34.61324069605047],
     [-58.51111846694645, -34.612857527095066],
     [-58.51142984471809, -34.6125117654016],
     [-58.51174173063876, -34.61216543930385],
     [-58.51215107694853, -34.61171083224642],
     [-58.51245691336955, -34.611371196947275],
     [-58.511184952378805, -34.610593953554826],
     [-58.510889668565575, -34.61092175041889],
     [-58.51081254883327, -34.61100741565342],
     [-58.51048066099595, -34.61137818417889],
     [-58.51015941045694, -34.61173697567404],
     [-58.5100845026915, -34.61182066772339],
     [-58.509836540904196, -34.61209949936585],
     [-58.50949426062622, -34.61248428340366]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_4',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 936.0,
   'VIVIEND': 372.0,
   'HOGARES': 325.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.062343037573248,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50911148979286, -34.61052285768928],
     [-58.508833193708135, -34.610933249715195],
     [-58.50855625704519, -34.61134244337178],
     [-58.508211843778696, -34.61172581619573],
     [-58.50786691662879, -34.61210982202479],
     [-58.50755203584535, -34.612460294304796],
     [-58.50735905411072, -34.61267515627405],
     [-58.507234086512206, -34.612811682376424],
     [-58.507704587441225, -34.61309010442047],
     [-58.50804924287239, -34.6132940635998],
     [-58.50851600019571, -34.61357030075866],
     [-58.50860606779757, -34.613477448959515],
     [-58.508837609549, -34.61321869673711],
     [-58.509150614230876, -34.61286885570826],
     [-58.50941092456824, -34.61257797837575],
     [-58.50949426062622, -34.61248428340366],
     [-58.509836540904196, -34.61209949936585],
     [-58.5100845026915, -34.61182066772339],
     [-58.51015941045694, -34.61173697567404],
     [-58.51048066099595, -34.61137818417889],
     [-58.51081254883327, -34.61100741565342],
     [-58.510889668565575, -34.61092175041889],
     [-58.511184952378805, -34.610593953554826],
     [-58.510351731965514, -34.61008483924288],
     [-58.50968637279775, -34.60967819108853],
     [-58.50945097295234, -34.61002166585447],
     [-58.50911148979286, -34.61052285768928]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_5',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 965.0,
   'VIVIEND': 414.0,
   'HOGARES': 349.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.06669911153394,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50755822505231, -34.609556385025485],
     [-58.506988591059404, -34.610219699560695],
     [-58.506876398984645, -34.610349037529524],
     [-58.50655379378113, -34.610745285313094],
     [-58.506200515072905, -34.611127881029034],
     [-58.506091725579566, -34.61125334376031],
     [-58.5060001289763, -34.611354997198944],
     [-58.50588818645359, -34.61147870027954],
     [-58.50755203584535, -34.612460294304796],
     [-58.50786691662879, -34.61210982202479],
     [-58.508211843778696, -34.61172581619573],
     [-58.50855625704519, -34.61134244337178],
     [-58.508833193708135, -34.610933249715195],
     [-58.50911148979286, -34.61052285768928],
     [-58.50945097295234, -34.61002166585447],
     [-58.50968637279775, -34.60967819108853],
     [-58.50822207733014, -34.60878345386661],
     [-58.50755822505231, -34.609556385025485]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_6',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 791.0,
   'VIVIEND': 332.0,
   'HOGARES': 291.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.078437758815408,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.505378291404526, -34.608257221897205],
     [-58.50469601048096, -34.609012397312064],
     [-58.50401533475326, -34.60976601896449],
     [-58.504154807015496, -34.609849775463786],
     [-58.50513939744614, -34.610465078002505],
     [-58.505311165090106, -34.610571639099696],
     [-58.50546751151402, -34.61066862778303],
     [-58.5060450214753, -34.611036245165],
     [-58.506200515072905, -34.611127881029034],
     [-58.50655379378113, -34.610745285313094],
     [-58.506876398984645, -34.610349037529524],
     [-58.506988591059404, -34.610219699560695],
     [-58.50755822505231, -34.609556385025485],
     [-58.50822207733014, -34.60878345386661],
     [-58.50805133292419, -34.60867907958063],
     [-58.50753067441599, -34.60837391621577],
     [-58.50735550336116, -34.60827073977229],
     [-58.50717879914034, -34.60816664813027],
     [-58.506062262358455, -34.6074999996986],
     [-58.505378291404526, -34.608257221897205]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_7',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 796.0,
   'VIVIEND': 331.0,
   'HOGARES': 273.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.06217276286912,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.506062262358455, -34.6074999996986],
     [-58.50589425090154, -34.60739970595534],
     [-58.505418847913575, -34.60712078540605],
     [-58.50519222277494, -34.60698691923487],
     [-58.50498791997161, -34.60686621408116],
     [-58.504480485162716, -34.606560328781796],
     [-58.504318015904225, -34.60646460847455],
     [-58.50413629273984, -34.606357556320816],
     [-58.503844070895845, -34.60618462489371],
     [-58.50373059029014, -34.60611740875019],
     [-58.50318372208647, -34.605793714146664],
     [-58.50300600565952, -34.605688349129075],
     [-58.50286861596267, -34.60584452315192],
     [-58.502477044644486, -34.606290995028424],
     [-58.50235403914512, -34.60643089595934],
     [-58.502219966948196, -34.606583406138135],
     [-58.50166443580403, -34.60721781798656],
     [-58.50184573181514, -34.60732487394424],
     [-58.50224589658985, -34.607560944972406],
     [-58.50239942020379, -34.607651811718526],
     [-58.50296146257046, -34.60798437807574],
     [-58.50311345418983, -34.608074328917944],
     [-58.50387299046749, -34.60852231982475],
     [-58.503997275209876, -34.60838467052588],
     [-58.50443303403949, -34.607900713573585],
     [-58.50455323077568, -34.607767290496774],
     [-58.504732061681345, -34.60787434299968],
     [-58.50521683866325, -34.60815910806451],
     [-58.505378291404526, -34.608257221897205],
     [-58.506062262358455, -34.6074999996986]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_8',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 691.0,
   'VIVIEND': 303.0,
   'HOGARES': 249.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.057543401843011,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500358824712656, -34.608702048818806],
     [-58.49959137172913, -34.6095729979366],
     [-58.5007261999627, -34.610245685653524],
     [-58.500858768390415, -34.61032472970122],
     [-58.50151079196324, -34.60961085361667],
     [-58.501633889262216, -34.60947208035176],
     [-58.50175196348865, -34.60933887201417],
     [-58.50228393356407, -34.608743482184494],
     [-58.50301671882101, -34.609174796707784],
     [-58.50318779591072, -34.609273544052606],
     [-58.5033108923893, -34.60913983957259],
     [-58.503764198403495, -34.60864278047526],
     [-58.50387299046749, -34.60852231982475],
     [-58.50311345418983, -34.608074328917944],
     [-58.50296146257046, -34.60798437807574],
     [-58.50239942020379, -34.607651811718526],
     [-58.50224589658985, -34.607560944972406],
     [-58.50184573181514, -34.60732487394424],
     [-58.50166443580403, -34.60721781798656],
     [-58.501533170578725, -34.60736779125297],
     [-58.50113417859419, -34.607822148494414],
     [-58.50099593047691, -34.60797902486041],
     [-58.500358824712656, -34.608702048818806]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_7_9',
   'BARRIO': 'VILLA DEVOTO',
   'COMUNA': '11',
   'POBLACI': 808.0,
   'VIVIEND': 349.0,
   'HOGARES': 296.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.062600695383094,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50318779591072, -34.609273544052606],
     [-58.50301671882101, -34.609174796707784],
     [-58.50228393356407, -34.608743482184494],
     [-58.50175196348865, -34.60933887201417],
     [-58.501633889262216, -34.60947208035176],
     [-58.50151079196324, -34.60961085361667],
     [-58.500858768390415, -34.61032472970122],
     [-58.50160587633692, -34.610770344044795],
     [-58.50176818079147, -34.61086663133335],
     [-58.502500813310554, -34.61130132916831],
     [-58.50265195875441, -34.611391351233614],
     [-58.50334869298882, -34.61050392764585],
     [-58.50401533475326, -34.60976601896449],
     [-58.50469601048096, -34.609012397312064],
     [-58.505378291404526, -34.608257221897205],
     [-58.50521683866325, -34.60815910806451],
     [-58.504732061681345, -34.60787434299968],
     [-58.50455323077568, -34.607767290496774],
     [-58.50443303403949, -34.607900713573585],
     [-58.503997275209876, -34.60838467052588],
     [-58.50387299046749, -34.60852231982475],
     [-58.503764198403495, -34.60864278047526],
     [-58.5033108923893, -34.60913983957259],
     [-58.50318779591072, -34.609273544052606]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 886.0,
   'VIVIEND': 434.0,
   'HOGARES': 347.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.057408484751791,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49995096134035, -34.6049593813257],
     [-58.49925259192315, -34.60578509589491],
     [-58.50026605072913, -34.60638789418471],
     [-58.50043234926405, -34.606486646912906],
     [-58.50148101037474, -34.60710949481305],
     [-58.50166443580403, -34.60721781798656],
     [-58.502219966948196, -34.606583406138135],
     [-58.50235403914512, -34.60643089595934],
     [-58.502477044644486, -34.606290995028424],
     [-58.50286861596267, -34.60584452315192],
     [-58.50300600565952, -34.605688349129075],
     [-58.50282368916946, -34.60558023885011],
     [-58.50187513999254, -34.605018004797095],
     [-58.50169257112128, -34.604910315436555],
     [-58.50150753208774, -34.60480107727103],
     [-58.500705276200605, -34.60432808434213],
     [-58.500561472929334, -34.604244113892456],
     [-58.500454384841774, -34.60436414860706],
     [-58.49995096134035, -34.6049593813257]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 896.0,
   'VIVIEND': 405.0,
   'HOGARES': 338.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.069819805561319,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49925259192315, -34.60578509589491],
     [-58.49995096134035, -34.6049593813257],
     [-58.500454384841774, -34.60436414860706],
     [-58.500561472929334, -34.604244113892456],
     [-58.50040114284958, -34.60415050036904],
     [-58.4993517595694, -34.603525530381944],
     [-58.49919526491103, -34.60343219580357],
     [-58.49902147703976, -34.60332858434889],
     [-58.498663083471726, -34.60311481449942],
     [-58.4985163873176, -34.60302774384211],
     [-58.498006904358576, -34.60360705475325],
     [-58.49789504591598, -34.60373166613915],
     [-58.49779008255442, -34.60384859928233],
     [-58.49717630794947, -34.60455005083145],
     [-58.496599895197356, -34.60520867139823],
     [-58.49727758818225, -34.6056114440484],
     [-58.49746296457323, -34.60572167444728],
     [-58.49851730224412, -34.60634891254318],
     [-58.49868709414173, -34.606455765318046],
     [-58.499137671176506, -34.6059209066161],
     [-58.49925259192315, -34.60578509589491]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 519.0,
   'VIVIEND': 259.0,
   'HOGARES': 210.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.031486713787436,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49624527144361, -34.60399614833847],
     [-58.49566715152501, -34.6046541312185],
     [-58.49582517814109, -34.60474887835643],
     [-58.49641179502939, -34.605096891115274],
     [-58.496599895197356, -34.60520867139823],
     [-58.49717630794947, -34.60455005083145],
     [-58.49779008255442, -34.60384859928233],
     [-58.49789504591598, -34.60373166613915],
     [-58.498006904358576, -34.60360705475325],
     [-58.4985163873176, -34.60302774384211],
     [-58.49838724043475, -34.60295109054621],
     [-58.49758467667212, -34.60247166849858],
     [-58.4969629072364, -34.603179318679764],
     [-58.49624527144361, -34.60399614833847]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 724.0,
   'VIVIEND': 404.0,
   'HOGARES': 329.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.028506026844472,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49726079139666, -34.60227809615952],
     [-58.49648609400509, -34.60222922797819],
     [-58.49634462822892, -34.60221997117077],
     [-58.49604006327625, -34.60262484880217],
     [-58.495930681393254, -34.60277037349683],
     [-58.49539176833015, -34.60348848614137],
     [-58.49487285036767, -34.60417990057011],
     [-58.495471130885285, -34.60453664731613],
     [-58.49566715152501, -34.6046541312185],
     [-58.49624527144361, -34.60399614833847],
     [-58.4969629072364, -34.603179318679764],
     [-58.49758467667212, -34.60247166849858],
     [-58.49726079139666, -34.60227809615952]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 658.0,
   'VIVIEND': 331.0,
   'HOGARES': 265.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.033761385576785,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49566715152501, -34.6046541312185],
     [-58.495471130885285, -34.60453664731613],
     [-58.49487285036767, -34.60417990057011],
     [-58.49478219206836, -34.60430070063472],
     [-58.49419686332717, -34.60507586299799],
     [-58.49474999424175, -34.60539875120674],
     [-58.49492386540016, -34.60550004471544],
     [-58.49509313672193, -34.60559859268246],
     [-58.49569824097687, -34.605952730749884],
     [-58.495864702519015, -34.60604881357893],
     [-58.49603661666917, -34.606148134166595],
     [-58.49655210537612, -34.6064444043743],
     [-58.49680529482988, -34.606593490644904],
     [-58.496942856704926, -34.606411125907606],
     [-58.49734770724916, -34.60587417393056],
     [-58.49746296457323, -34.60572167444728],
     [-58.49727758818225, -34.6056114440484],
     [-58.496599895197356, -34.60520867139823],
     [-58.49641179502939, -34.605096891115274],
     [-58.49582517814109, -34.60474887835643],
     [-58.49566715152501, -34.6046541312185]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 992.0,
   'VIVIEND': 433.0,
   'HOGARES': 379.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.070191754608631,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50043234926405, -34.606486646912906],
     [-58.50026605072913, -34.60638789418471],
     [-58.49925259192315, -34.60578509589491],
     [-58.499137671176506, -34.6059209066161],
     [-58.49868709414173, -34.606455765318046],
     [-58.49851730224412, -34.60634891254318],
     [-58.49746296457323, -34.60572167444728],
     [-58.49734770724916, -34.60587417393056],
     [-58.496942856704926, -34.606411125907606],
     [-58.49680529482988, -34.606593490644904],
     [-58.49700021388349, -34.60670836700559],
     [-58.49766283608217, -34.6070884653122],
     [-58.49780612954313, -34.60717060827643],
     [-58.4979903177511, -34.60728097903308],
     [-58.49838127203664, -34.60751523439731],
     [-58.498517241820906, -34.60759667442772],
     [-58.499216689958274, -34.608016472211865],
     [-58.500358824712656, -34.608702048818806],
     [-58.50099593047691, -34.60797902486041],
     [-58.50113417859419, -34.607822148494414],
     [-58.501533170578725, -34.60736779125297],
     [-58.50166443580403, -34.60721781798656],
     [-58.50148101037474, -34.60710949481305],
     [-58.50043234926405, -34.606486646912906]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 992.0,
   'VIVIEND': 398.0,
   'HOGARES': 345.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.084033229809888,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49766283608217, -34.6070884653122],
     [-58.49700021388349, -34.60670836700559],
     [-58.49680529482988, -34.606593490644904],
     [-58.49667947967031, -34.606760288378105],
     [-58.49623690899972, -34.60734612227587],
     [-58.49611424082391, -34.60750763678628],
     [-58.49630004450848, -34.60761477017025],
     [-58.4968428918334, -34.607931102204326],
     [-58.49701958348164, -34.60803718068318],
     [-58.49634099025236, -34.60903815641698],
     [-58.497530323261564, -34.60977459204093],
     [-58.497709320912186, -34.609884260420685],
     [-58.4979141336606, -34.6100097663454],
     [-58.498607216303405, -34.61044217507009],
     [-58.49875026236303, -34.610527626848715],
     [-58.49959137172913, -34.6095729979366],
     [-58.500358824712656, -34.608702048818806],
     [-58.499216689958274, -34.608016472211865],
     [-58.498517241820906, -34.60759667442772],
     [-58.49838127203664, -34.60751523439731],
     [-58.4979903177511, -34.60728097903308],
     [-58.49780612954313, -34.60717060827643],
     [-58.49766283608217, -34.6070884653122]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 973.0,
   'VIVIEND': 407.0,
   'HOGARES': 355.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.067388213577934,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4942893857132, -34.60784890172292],
     [-58.494454912011676, -34.60794364864237],
     [-58.49515126955501, -34.60834586467138],
     [-58.49537762574952, -34.60847714387409],
     [-58.49563908212003, -34.6086288359644],
     [-58.496171878334565, -34.6089334129383],
     [-58.49634099025236, -34.60903815641698],
     [-58.49701958348164, -34.60803718068318],
     [-58.4968428918334, -34.607931102204326],
     [-58.49630004450848, -34.60761477017025],
     [-58.49611424082391, -34.60750763678628],
     [-58.49623690899972, -34.60734612227587],
     [-58.49667947967031, -34.606760288378105],
     [-58.49680529482988, -34.606593490644904],
     [-58.49655210537612, -34.6064444043743],
     [-58.49603661666917, -34.606148134166595],
     [-58.495864702519015, -34.60604881357893],
     [-58.49569824097687, -34.605952730749884],
     [-58.49509313672193, -34.60559859268246],
     [-58.49492386540016, -34.60550004471544],
     [-58.49415647114474, -34.6063733544959],
     [-58.493342150738336, -34.60730012248471],
     [-58.493496856330694, -34.60739029590921],
     [-58.4941399608831, -34.60776344631748],
     [-58.4942893857132, -34.60784890172292]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_8_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 823.0,
   'VIVIEND': 456.0,
   'HOGARES': 365.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.020801878471732,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49492386540016, -34.60550004471544],
     [-58.49474999424175, -34.60539875120674],
     [-58.49419686332717, -34.60507586299799],
     [-58.493407402752595, -34.605939877932634],
     [-58.49256070490177, -34.606843831734025],
     [-58.49274556540588, -34.606950266541226],
     [-58.49318736025706, -34.60720980803702],
     [-58.493342150738336, -34.60730012248471],
     [-58.49415647114474, -34.6063733544959],
     [-58.49492386540016, -34.60550004471544]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_1',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 873.0,
   'VIVIEND': 364.0,
   'HOGARES': 315.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.092837332993984,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5022323931899, -34.60225151594491],
     [-58.50189026812705, -34.60223028800256],
     [-58.50023585300654, -34.60211876443775],
     [-58.49999317911352, -34.60242370199848],
     [-58.50003116468893, -34.60242615520367],
     [-58.501411076300606, -34.60323791887677],
     [-58.50261998785868, -34.603854438700104],
     [-58.50184562055081, -34.60472836271567],
     [-58.50169257112128, -34.604910315436555],
     [-58.50187513999254, -34.605018004797095],
     [-58.50282368916946, -34.60558023885011],
     [-58.50300600565952, -34.605688349129075],
     [-58.50313283951226, -34.60554408000397],
     [-58.50401854477437, -34.60455398205091],
     [-58.5047725481372, -34.60371110798916],
     [-58.50537689745533, -34.60303546685829],
     [-58.50556637291286, -34.60282596110358],
     [-58.50521477636957, -34.60260875734843],
     [-58.50494249686055, -34.60244046943879],
     [-58.50479730213709, -34.602470238316705],
     [-58.50390259370485, -34.60241209225363],
     [-58.503682430567196, -34.60239885636632],
     [-58.50356869788091, -34.60232783724634],
     [-58.5022323931899, -34.60225151594491]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_10',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 671.0,
   'VIVIEND': 400.0,
   'HOGARES': 352.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.01898963941747,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491357723163645, -34.601085032111136],
     [-58.49110693892659, -34.6014189684337],
     [-58.49201695757734, -34.60147671169614],
     [-58.492970413996126, -34.60153943746865],
     [-58.49311836083154, -34.601342426232605],
     [-58.49327953215688, -34.601444640825605],
     [-58.493399628971126, -34.60147932943887],
     [-58.49359449336332, -34.601491533939374],
     [-58.4936781252308, -34.601488343679485],
     [-58.49376728205321, -34.60145606706306],
     [-58.49391560820394, -34.60136778860024],
     [-58.49377650027686, -34.601281907474366],
     [-58.49335321859104, -34.60102961681827],
     [-58.49211601388177, -34.600292235413136],
     [-58.49200348764627, -34.600225289755805],
     [-58.491357723163645, -34.601085032111136]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_11',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 586.0,
   'VIVIEND': 332.0,
   'HOGARES': 258.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.034655365896165,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.493912392559984, -34.600284746781426],
     [-58.49335321859104, -34.60102961681827],
     [-58.49377650027686, -34.601281907474366],
     [-58.49391560820394, -34.60136778860024],
     [-58.4944088213097, -34.60163738331025],
     [-58.49478127546746, -34.60169566700605],
     [-58.49524484978145, -34.60107764872094],
     [-58.496024211179076, -34.60003862162514],
     [-58.494692699825386, -34.59924537569219],
     [-58.493912392559984, -34.600284746781426]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_12',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 658.0,
   'VIVIEND': 387.0,
   'HOGARES': 297.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.027304967928112,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49524484978145, -34.60107764872094],
     [-58.49478127546746, -34.60169566700605],
     [-58.49474024632666, -34.601750326395944],
     [-58.49660399110028, -34.6018746835716],
     [-58.49727592394079, -34.6009795535811],
     [-58.497377044452584, -34.600844523084895],
     [-58.496024211179076, -34.60003862162514],
     [-58.49524484978145, -34.60107764872094]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_2',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 807.0,
   'VIVIEND': 355.0,
   'HOGARES': 312.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.066678107362509,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50003116468893, -34.60242615520367],
     [-58.49999317911352, -34.60242370199848],
     [-58.50023585300654, -34.60211876443775],
     [-58.50010733259023, -34.60211007139733],
     [-58.49942359413177, -34.60206365876673],
     [-58.49847268037026, -34.60199739108639],
     [-58.49660399110028, -34.6018746835716],
     [-58.4965417680398, -34.60195751883749],
     [-58.49640548978191, -34.60213903781842],
     [-58.49634462822892, -34.60221997117077],
     [-58.49648609400509, -34.60222922797819],
     [-58.49726079139666, -34.60227809615952],
     [-58.49758467667212, -34.60247166849858],
     [-58.49838724043475, -34.60295109054621],
     [-58.4985163873176, -34.60302774384211],
     [-58.498663083471726, -34.60311481449942],
     [-58.49902147703976, -34.60332858434889],
     [-58.49919526491103, -34.60343219580357],
     [-58.4993517595694, -34.603525530381944],
     [-58.50040114284958, -34.60415050036904],
     [-58.500561472929334, -34.604244113892456],
     [-58.500705276200605, -34.60432808434213],
     [-58.50150753208774, -34.60480107727103],
     [-58.50169257112128, -34.604910315436555],
     [-58.50184562055081, -34.60472836271567],
     [-58.50261998785868, -34.603854438700104],
     [-58.501411076300606, -34.60323791887677],
     [-58.50003116468893, -34.60242615520367]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_3',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 1008.0,
   'VIVIEND': 481.0,
   'HOGARES': 379.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.062515463452101,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49847268037026, -34.60199739108639],
     [-58.49942359413177, -34.60206365876673],
     [-58.50010733259023, -34.60211007139733],
     [-58.50023585300654, -34.60211876443775],
     [-58.50189026812705, -34.60223028800256],
     [-58.5022323931899, -34.60225151594491],
     [-58.50081465235621, -34.60138751903477],
     [-58.49950990840311, -34.60061114871296],
     [-58.49815331053725, -34.59980393392208],
     [-58.49805993823855, -34.599928892280445],
     [-58.49747263200829, -34.600716958967396],
     [-58.497377044452584, -34.600844523084895],
     [-58.49727592394079, -34.6009795535811],
     [-58.49660399110028, -34.6018746835716],
     [-58.49847268037026, -34.60199739108639]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_4',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 659.0,
   'VIVIEND': 305.0,
   'HOGARES': 255.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.056540527305365,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5042611214372, -34.60201950073261],
     [-58.50304696460988, -34.60126933496998],
     [-58.502958791707805, -34.60121485632852],
     [-58.5028032328575, -34.60111877951781],
     [-58.502492286394414, -34.600926273123285],
     [-58.50161338066808, -34.600382394380816],
     [-58.50027983750691, -34.59955709701615],
     [-58.49961613163525, -34.60046907246695],
     [-58.49950990840311, -34.60061114871296],
     [-58.50081465235621, -34.60138751903477],
     [-58.5022323931899, -34.60225151594491],
     [-58.50356869788091, -34.60232783724634],
     [-58.503682430567196, -34.60239885636632],
     [-58.50390259370485, -34.60241209225363],
     [-58.50479730213709, -34.602470238316705],
     [-58.50494249686055, -34.60244046943879],
     [-58.5042611214372, -34.60201950073261]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_5',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 737.0,
   'VIVIEND': 368.0,
   'HOGARES': 308.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.021077662225217,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50027983750691, -34.59955709701615],
     [-58.50004190837361, -34.59940984411917],
     [-58.498942402111496, -34.59872925086636],
     [-58.498255109008504, -34.59966770527665],
     [-58.49815331053725, -34.59980393392208],
     [-58.49950990840311, -34.60061114871296],
     [-58.49961613163525, -34.60046907246695],
     [-58.50027983750691, -34.59955709701615]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_6',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 579.0,
   'VIVIEND': 337.0,
   'HOGARES': 248.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.042021461352646,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.498942402111496, -34.59872925086636],
     [-58.49762160424251, -34.5979117374314],
     [-58.49680108331655, -34.59899930838106],
     [-58.49670600880024, -34.59912961838165],
     [-58.496024211179076, -34.60003862162514],
     [-58.497377044452584, -34.600844523084895],
     [-58.49747263200829, -34.600716958967396],
     [-58.49805993823855, -34.599928892280445],
     [-58.49815331053725, -34.59980393392208],
     [-58.498255109008504, -34.59966770527665],
     [-58.498942402111496, -34.59872925086636]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_7',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 788.0,
   'VIVIEND': 384.0,
   'HOGARES': 312.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.051123715155721,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49618397143556, -34.5972586806119],
     [-58.49411493369235, -34.59739521862879],
     [-58.49547137034075, -34.598207971738354],
     [-58.494692699825386, -34.59924537569219],
     [-58.496024211179076, -34.60003862162514],
     [-58.49670600880024, -34.59912961838165],
     [-58.49680108331655, -34.59899930838106],
     [-58.49762160424251, -34.5979117374314],
     [-58.497403787930104, -34.597776868127674],
     [-58.496574184963684, -34.597264911029356],
     [-58.49652733431472, -34.597236050384055],
     [-58.49618397143556, -34.5972586806119]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_8',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 866.0,
   'VIVIEND': 356.0,
   'HOGARES': 331.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.041452896500289,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49547137034075, -34.598207971738354],
     [-58.49411493369235, -34.59739521862879],
     [-58.493339407314984, -34.59843916266494],
     [-58.49256087981582, -34.59948035581619],
     [-58.493912392559984, -34.600284746781426],
     [-58.494692699825386, -34.59924537569219],
     [-58.49547137034075, -34.598207971738354]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '11_9_9',
   'BARRIO': 'VILLA DEL PARQUE',
   'COMUNA': '11',
   'POBLACI': 529.0,
   'VIVIEND': 300.0,
   'HOGARES': 246.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.014805260739923,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49256087981582, -34.59948035581619],
     [-58.492090485229305, -34.60010949262392],
     [-58.49200348764627, -34.600225289755805],
     [-58.49211601388177, -34.600292235413136],
     [-58.49335321859104, -34.60102961681827],
     [-58.493912392559984, -34.600284746781426],
     [-58.49256087981582, -34.59948035581619]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 581.0,
   'VIVIEND': 216.0,
   'HOGARES': 191.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.277458159761138,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50902647664918, -34.570048286894135],
     [-58.50925813754057, -34.56978865515244],
     [-58.506000689403386, -34.56284249979633],
     [-58.50544274332184, -34.56287498180403],
     [-58.50499139644235, -34.56290125603017],
     [-58.5049883550271, -34.56289416143858],
     [-58.50483132351183, -34.56289690508328],
     [-58.50483613656211, -34.56298803196551],
     [-58.504820811944555, -34.56315332217407],
     [-58.50476457315194, -34.56338221926983],
     [-58.50465709160668, -34.563619584821986],
     [-58.50447281586857, -34.563840074835284],
     [-58.50434680016586, -34.563957091991284],
     [-58.5041254446053, -34.564081606337716],
     [-58.50377909016982, -34.56431764343671],
     [-58.503572294490574, -34.56445187037085],
     [-58.50342182828595, -34.56453509127529],
     [-58.50327093699434, -34.56462007273187],
     [-58.503222425750124, -34.564644737207125],
     [-58.50316897644607, -34.564668206093906],
     [-58.50311373798282, -34.56468871774599],
     [-58.50306037038049, -34.56470521459261],
     [-58.50292162345862, -34.564731317225515],
     [-58.502843904051325, -34.56473746968609],
     [-58.50267245301511, -34.56473301881628],
     [-58.50252687200615, -34.56470954481741],
     [-58.5024217252691, -34.56468218418086],
     [-58.502311900126024, -34.56520103266806],
     [-58.50220037472711, -34.5657276986136],
     [-58.50209863451992, -34.56570568881648],
     [-58.502013240589946, -34.565686561050605],
     [-58.50191022092855, -34.5656589880216],
     [-58.50181716016199, -34.56562859475947],
     [-58.50171728562328, -34.56559073867256],
     [-58.50166721937984, -34.565568993684195],
     [-58.50159322587633, -34.565534509577745],
     [-58.50151105609338, -34.565491577159804],
     [-58.50119251204174, -34.56588253056337],
     [-58.50083712482729, -34.566319833537094],
     [-58.50127649443634, -34.56653195303953],
     [-58.501397577094345, -34.56659078907356],
     [-58.50195965163704, -34.566864206337236],
     [-58.50211121908242, -34.56693789128804],
     [-58.50273120202789, -34.567241779805656],
     [-58.50335638373126, -34.56754819868528],
     [-58.503500377566006, -34.5676231520537],
     [-58.50364028434346, -34.56769606433013],
     [-58.50405650862526, -34.56790043490947],
     [-58.50447111704791, -34.568104029952515],
     [-58.50460761726318, -34.568171097099764],
     [-58.505661988889756, -34.568689402226546],
     [-58.5067157774769, -34.569207346287996],
     [-58.50799932312623, -34.56983772125449],
     [-58.50821633401541, -34.56995747156345],
     [-58.508439434295745, -34.5704455750016],
     [-58.50856689301976, -34.570391990918424],
     [-58.508620432089025, -34.57036410424945],
     [-58.508764623089526, -34.57025472734021],
     [-58.508920890787834, -34.570116764618746],
     [-58.50902647664918, -34.570048286894135]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_10',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 888.0,
   'VIVIEND': 439.0,
   'HOGARES': 361.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.076476645703048,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.496842494004, -34.5538618224513],
     [-58.49745809273523, -34.5531131822183],
     [-58.496438091918954, -34.5525744427831],
     [-58.49551438996194, -34.55208651509047],
     [-58.49543102319246, -34.55220548367236],
     [-58.49496458990004, -34.552870199451746],
     [-58.494412907860955, -34.55365627614479],
     [-58.49434774321229, -34.55374918233971],
     [-58.49395301046122, -34.554315633982554],
     [-58.493864449593524, -34.554441433911265],
     [-58.49343355186758, -34.55505409118697],
     [-58.49335451780944, -34.55516643734724],
     [-58.493814844531656, -34.55540639633584],
     [-58.493990480131586, -34.555499874525424],
     [-58.4942781555727, -34.55565297266285],
     [-58.494445262480994, -34.555699620439896],
     [-58.494674677237256, -34.555746955925926],
     [-58.49493846955775, -34.555765901036324],
     [-58.49516801351581, -34.55573743491145],
     [-58.49516785530879, -34.55573738895585],
     [-58.49532509782147, -34.55567476134564],
     [-58.49546637556015, -34.55554629364439],
     [-58.495608200596536, -34.555362685797746],
     [-58.496223991612105, -34.554613911065495],
     [-58.496842494004, -34.5538618224513]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_11',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1038.0,
   'VIVIEND': 439.0,
   'HOGARES': 374.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.090112286587,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.493489886661294, -34.55316826262232],
     [-58.49256823834889, -34.55268094598425],
     [-58.4916463453598, -34.55219341113295],
     [-58.49084398628746, -34.55176915300274],
     [-58.490708458736364, -34.55169777418336],
     [-58.49056220500056, -34.551620693312884],
     [-58.490433062686016, -34.551552693083075],
     [-58.48988705004098, -34.55234050881959],
     [-58.489807673975655, -34.55245489510804],
     [-58.489384149242774, -34.55305847973165],
     [-58.489303786693064, -34.553178222633534],
     [-58.48942828386801, -34.55324658627054],
     [-58.48958001336907, -34.55332459896297],
     [-58.49051067637585, -34.553821033623805],
     [-58.49125158766065, -34.55421396949325],
     [-58.49142772820982, -34.55430632448691],
     [-58.49235679306197, -34.55479350695134],
     [-58.49327727008277, -34.555276177318795],
     [-58.49335451780944, -34.55516643734724],
     [-58.49343355186758, -34.55505409118697],
     [-58.493864449593524, -34.554441433911265],
     [-58.49395301046122, -34.554315633982554],
     [-58.49434774321229, -34.55374918233971],
     [-58.494412907860955, -34.55365627614479],
     [-58.493489886661294, -34.55316826262232]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 582.0,
   'VIVIEND': 223.0,
   'HOGARES': 196.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.176387748568192,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50412280231038, -34.56218614767074],
     [-58.504072482837465, -34.56216588264437],
     [-58.503990151631534, -34.56213668459012],
     [-58.50390092723315, -34.56211143254643],
     [-58.503814089704136, -34.56209286990627],
     [-58.50372291280196, -34.56207839325007],
     [-58.50275838507981, -34.561970119856326],
     [-58.50270143290469, -34.561963729953376],
     [-58.50239573010408, -34.561929392437634],
     [-58.50248297905427, -34.56174034621812],
     [-58.50250210511589, -34.56168329660237],
     [-58.502512121931446, -34.56162455977973],
     [-58.50252204934512, -34.5615568791458],
     [-58.50252925867714, -34.5615016644328],
     [-58.50253167930211, -34.561400957421725],
     [-58.502525774752826, -34.56133609890672],
     [-58.50251459360313, -34.5612736365254],
     [-58.50250180133574, -34.56122427351935],
     [-58.50247171173175, -34.56113921121306],
     [-58.502429522615635, -34.561029222763004],
     [-58.5023839412005, -34.56094571479939],
     [-58.50235131448788, -34.56089523143752],
     [-58.50232175680755, -34.56085425430212],
     [-58.5022823207394, -34.5608048999138],
     [-58.502218644313054, -34.56074260441381],
     [-58.50213668661183, -34.560659798823856],
     [-58.502030484114805, -34.56063473244984],
     [-58.5016225875292, -34.561131808674176],
     [-58.501109584831916, -34.56178515311453],
     [-58.50055973565886, -34.562485268246796],
     [-58.50018233121199, -34.562965957512546],
     [-58.49979020363583, -34.56346517153699],
     [-58.49926134731547, -34.56413865402076],
     [-58.49888299197985, -34.56462039578695],
     [-58.498627491204346, -34.56494575921198],
     [-58.4984520512727, -34.56516912487425],
     [-58.49853898594068, -34.56521100159702],
     [-58.49911202568153, -34.56548935849296],
     [-58.499634489651626, -34.56573920632511],
     [-58.500261690264075, -34.56604204890886],
     [-58.50083712482729, -34.566319833537094],
     [-58.50119251204174, -34.56588253056337],
     [-58.50151105609338, -34.565491577159804],
     [-58.50159322587633, -34.565534509577745],
     [-58.50166721937984, -34.565568993684195],
     [-58.50171728562328, -34.56559073867256],
     [-58.50181716016199, -34.56562859475947],
     [-58.50191022092855, -34.5656589880216],
     [-58.502013240589946, -34.565686561050605],
     [-58.50209863451992, -34.56570568881648],
     [-58.50220037472711, -34.5657276986136],
     [-58.502311900126024, -34.56520103266806],
     [-58.5024217252691, -34.56468218418086],
     [-58.50252687200615, -34.56470954481741],
     [-58.50267245301511, -34.56473301881628],
     [-58.502843904051325, -34.56473746968609],
     [-58.50292162345862, -34.564731317225515],
     [-58.50306037038049, -34.56470521459261],
     [-58.50311373798282, -34.56468871774599],
     [-58.50316897644607, -34.564668206093906],
     [-58.503222425750124, -34.564644737207125],
     [-58.50327093699434, -34.56462007273187],
     [-58.50342182828595, -34.56453509127529],
     [-58.503572294490574, -34.56445187037085],
     [-58.50377909016982, -34.56431764343671],
     [-58.5041254446053, -34.564081606337716],
     [-58.50434680016586, -34.563957091991284],
     [-58.50447281586857, -34.563840074835284],
     [-58.50465709160668, -34.563619584821986],
     [-58.50476457315194, -34.56338221926983],
     [-58.504820811944555, -34.56315332217407],
     [-58.50483613656211, -34.56298803196551],
     [-58.50483132351183, -34.56289690508328],
     [-58.50480530327397, -34.5627845879173],
     [-58.50469251477742, -34.5626235672702],
     [-58.50452847438519, -34.562449887780176],
     [-58.5043542343321, -34.562305860015655],
     [-58.50412280231038, -34.56218614767074]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 687.0,
   'VIVIEND': 202.0,
   'HOGARES': 187.0,
   'HOGARES_': 0.0,
   'AREA_KM': 1.161076393365044,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49327727008277, -34.555276177318795],
     [-58.49310737542638, -34.55551756281044],
     [-58.49300605183272, -34.555664633318486],
     [-58.49284270828542, -34.55590179136063],
     [-58.4925707220971, -34.55629637343138],
     [-58.49232612806428, -34.556651369945506],
     [-58.4921827737544, -34.55685950753249],
     [-58.49178665260426, -34.55743426225417],
     [-58.4917172287709, -34.55753505548921],
     [-58.49125694941718, -34.5581977127792],
     [-58.49072740639864, -34.55895996366835],
     [-58.49017802936283, -34.559750808758416],
     [-58.48942248071611, -34.56083846307445],
     [-58.489586115355046, -34.56091673856984],
     [-58.49024525435119, -34.56123173875567],
     [-58.49038394492172, -34.56129804673265],
     [-58.49085399604633, -34.56152273243669],
     [-58.49132966887414, -34.56175002068916],
     [-58.492283235989696, -34.56220578827482],
     [-58.49352901895239, -34.56280112556255],
     [-58.49368823404028, -34.56287763605033],
     [-58.494816711114034, -34.56341953809857],
     [-58.49599245776123, -34.56398409327782],
     [-58.49607581386432, -34.564024141718036],
     [-58.4962221767859, -34.564094384670064],
     [-58.49725983733494, -34.56459438670212],
     [-58.49739036531341, -34.56465730864304],
     [-58.49818630927084, -34.565041030931894],
     [-58.4984520512727, -34.56516912487425],
     [-58.498627491204346, -34.56494575921198],
     [-58.49888299197985, -34.56462039578695],
     [-58.49926134731547, -34.56413865402076],
     [-58.49979020363583, -34.56346517153699],
     [-58.50018233121199, -34.562965957512546],
     [-58.50055973565886, -34.562485268246796],
     [-58.501109584831916, -34.56178515311453],
     [-58.5016225875292, -34.561131808674176],
     [-58.502030484114805, -34.56063473244984],
     [-58.50213668661183, -34.560659798823856],
     [-58.502218644313054, -34.56074260441381],
     [-58.5022823207394, -34.5608048999138],
     [-58.50232175680755, -34.56085425430212],
     [-58.50235131448788, -34.56089523143752],
     [-58.5023839412005, -34.56094571479939],
     [-58.502429522615635, -34.561029222763004],
     [-58.50247171173175, -34.56113921121306],
     [-58.50250180133574, -34.56122427351935],
     [-58.50251459360313, -34.5612736365254],
     [-58.502525774752826, -34.56133609890672],
     [-58.50253167930211, -34.561400957421725],
     [-58.50252925867714, -34.5615016644328],
     [-58.50252204934512, -34.5615568791458],
     [-58.502512121931446, -34.56162455977973],
     [-58.50250210511589, -34.56168329660237],
     [-58.50248297905427, -34.56174034621812],
     [-58.50239573010408, -34.561929392437634],
     [-58.50270143290469, -34.561963729953376],
     [-58.50275838507981, -34.561970119856326],
     [-58.50372291280196, -34.56207839325007],
     [-58.503814089704136, -34.56209286990627],
     [-58.50390092723315, -34.56211143254643],
     [-58.503990151631534, -34.56213668459012],
     [-58.504072482837465, -34.56216588264437],
     [-58.50412280231038, -34.56218614767074],
     [-58.5043542343321, -34.562305860015655],
     [-58.50452847438519, -34.562449887780176],
     [-58.50469251477742, -34.5626235672702],
     [-58.50480530327397, -34.5627845879173],
     [-58.50483132351183, -34.56289690508328],
     [-58.5049883550271, -34.56289416143858],
     [-58.50499139644235, -34.56290125603017],
     [-58.50544274332184, -34.56287498180403],
     [-58.506000689403386, -34.56284249979633],
     [-58.5010032789967, -34.55218363042605],
     [-58.500484498055236, -34.55235800077219],
     [-58.50005454692859, -34.55250251181055],
     [-58.500049789914115, -34.55249331924876],
     [-58.49983693665754, -34.552351409317595],
     [-58.49962392689598, -34.55223893630738],
     [-58.49933910725504, -34.55218852807211],
     [-58.49909466613516, -34.55221465807373],
     [-58.49891722409873, -34.552270979643374],
     [-58.49873989013789, -34.552381104887566],
     [-58.498417116752016, -34.55254838639735],
     [-58.498075126310205, -34.55236193268756],
     [-58.49745809273523, -34.5531131822183],
     [-58.496842494004, -34.5538618224513],
     [-58.496223991612105, -34.554613911065495],
     [-58.495608200596536, -34.555362685797746],
     [-58.49546637556015, -34.55554629364439],
     [-58.49532509782147, -34.55567476134564],
     [-58.49516785530879, -34.55573738895585],
     [-58.49516788431264, -34.55573745093428],
     [-58.49493846955775, -34.555765901036324],
     [-58.494674677237256, -34.555746955925926],
     [-58.494445262480994, -34.555699620439896],
     [-58.4942781555727, -34.55565297266285],
     [-58.493990480131586, -34.555499874525424],
     [-58.493814844531656, -34.55540639633584],
     [-58.49335451780944, -34.55516643734724],
     [-58.49327727008277, -34.555276177318795]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 885.0,
   'VIVIEND': 315.0,
   'HOGARES': 313.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.136312209240228,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4956931715199, -34.55002804225071],
     [-58.495143131944005, -34.55081334749522],
     [-58.4960653703706, -34.55130043341511],
     [-58.496989237109155, -34.55178842738209],
     [-58.498075126310205, -34.55236193268756],
     [-58.498417116752016, -34.55254838639735],
     [-58.49873989013789, -34.552381104887566],
     [-58.49891722409873, -34.552270979643374],
     [-58.49909466613516, -34.55221465807373],
     [-58.49933910725504, -34.55218852807211],
     [-58.49962392689598, -34.55223893630738],
     [-58.49983693665754, -34.552351409317595],
     [-58.500049789914115, -34.55249331924876],
     [-58.50005454692859, -34.55250251181055],
     [-58.500484498055236, -34.55235800077219],
     [-58.5010032789967, -34.55218363042605],
     [-58.50007866226045, -34.55021121231315],
     [-58.4999505974159, -34.54993801287786],
     [-58.49673483495014, -34.54851885944996],
     [-58.49646050910786, -34.54892254335385],
     [-58.49623819140279, -34.54924969140872],
     [-58.49624771617895, -34.54925378977187],
     [-58.4956931715199, -34.55002804225071]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 588.0,
   'VIVIEND': 249.0,
   'HOGARES': 217.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.085110141550764,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49646050910786, -34.54892254335385],
     [-58.49673483495014, -34.54851885944996],
     [-58.493835756456036, -34.54723934813208],
     [-58.493562452464396, -34.54763336264167],
     [-58.49264827980917, -34.54895126748486],
     [-58.49264189074376, -34.54895394599734],
     [-58.492365584608635, -34.54934620512172],
     [-58.4932982616545, -34.5498388730337],
     [-58.49422064886727, -34.550326113782305],
     [-58.495143131944005, -34.55081334749522],
     [-58.4956931715199, -34.55002804225071],
     [-58.49624771617895, -34.54925378977187],
     [-58.49623819140279, -34.54924969140872],
     [-58.49646050910786, -34.54892254335385]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 760.0,
   'VIVIEND': 330.0,
   'HOGARES': 286.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.128533844692707,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492126857196006, -34.546485072925904],
     [-58.49186562014897, -34.54687394708753],
     [-58.4913397365404, -34.547658173477686],
     [-58.49131641203409, -34.547646347698404],
     [-58.491279832804956, -34.547700653241925],
     [-58.49128027343252, -34.54774473862118],
     [-58.490766797580264, -34.54850621255012],
     [-58.49080978535394, -34.54852465377145],
     [-58.49027205335843, -34.54931669515469],
     [-58.49091247155806, -34.549655147804586],
     [-58.491537741963725, -34.549985572310206],
     [-58.491066184750956, -34.550654781795444],
     [-58.49098315305533, -34.55077233881086],
     [-58.49110829310943, -34.55083702946834],
     [-58.49125982348285, -34.550915305669726],
     [-58.49134778917406, -34.55079077532976],
     [-58.49181253914055, -34.55013114406845],
     [-58.49274794585145, -34.55062522394914],
     [-58.493669316981716, -34.551111976079675],
     [-58.494592401465084, -34.55159956585646],
     [-58.49551438996194, -34.55208651509047],
     [-58.496438091918954, -34.5525744427831],
     [-58.49745809273523, -34.5531131822183],
     [-58.498075126310205, -34.55236193268756],
     [-58.496989237109155, -34.55178842738209],
     [-58.4960653703706, -34.55130043341511],
     [-58.495143131944005, -34.55081334749522],
     [-58.49422064886727, -34.550326113782305],
     [-58.4932982616545, -34.5498388730337],
     [-58.492365584608635, -34.54934620512172],
     [-58.49264189074376, -34.54895394599734],
     [-58.49264827980917, -34.54895126748486],
     [-58.493562452464396, -34.54763336264167],
     [-58.493835756456036, -34.54723934813208],
     [-58.492126857196006, -34.546485072925904]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1089.0,
   'VIVIEND': 370.0,
   'HOGARES': 360.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.086196263604015,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49170746057446, -34.546803278962265],
     [-58.49197908344228, -34.54641982530078],
     [-58.49114096129393, -34.5460498772413],
     [-58.49087044748504, -34.546429516705246],
     [-58.49032399262254, -34.547196399825616],
     [-58.49032471858376, -34.54719677737561],
     [-58.490316598254246, -34.547349036113836],
     [-58.49025648143732, -34.547520602795515],
     [-58.49015619008798, -34.547686685403576],
     [-58.48990047083789, -34.54807083563243],
     [-58.48944998907767, -34.54784811332871],
     [-58.48885998099511, -34.548612412936166],
     [-58.488272344404784, -34.54937382171532],
     [-58.48789185727847, -34.54983109388564],
     [-58.48764852033039, -34.55012361500188],
     [-58.4870611191338, -34.550890862915885],
     [-58.48679918262511, -34.55075443307105],
     [-58.48633990572431, -34.551356155562594],
     [-58.48623525297512, -34.55149329140771],
     [-58.48705503500968, -34.551918632735884],
     [-58.487862001307114, -34.552155657283194],
     [-58.487862079739706, -34.552155564254086],
     [-58.48796010459252, -34.55203929650728],
     [-58.48801523967705, -34.551973790727146],
     [-58.488314288980845, -34.55154343743008],
     [-58.488860056658716, -34.550758023091426],
     [-58.48940879208921, -34.549969577330046],
     [-58.489960837761515, -34.54918479031569],
     [-58.49050487639392, -34.548411552080175],
     [-58.49106846838657, -34.547602531343486],
     [-58.49116482937636, -34.5476472282181],
     [-58.49120447159953, -34.54758982333338],
     [-58.49116931400619, -34.547570112788975],
     [-58.49170746057446, -34.546803278962265]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 505.0,
   'VIVIEND': 214.0,
   'HOGARES': 182.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.075532032200404,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.488699915862384, -34.55281605921198],
     [-58.489303786693064, -34.553178222633534],
     [-58.489384149242774, -34.55305847973165],
     [-58.489807673975655, -34.55245489510804],
     [-58.48988705004098, -34.55234050881959],
     [-58.490433062686016, -34.551552693083075],
     [-58.490490317744666, -34.55147021350303],
     [-58.49098315305533, -34.55077233881086],
     [-58.491066184750956, -34.550654781795444],
     [-58.491537741963725, -34.549985572310206],
     [-58.49091247155806, -34.549655147804586],
     [-58.49027205335843, -34.54931669515469],
     [-58.49080978535394, -34.54852465377145],
     [-58.490766797580264, -34.54850621255012],
     [-58.49128027343252, -34.54774473862118],
     [-58.491279832804956, -34.547700653241925],
     [-58.49131641203409, -34.547646347698404],
     [-58.4913397365404, -34.547658173477686],
     [-58.49186562014897, -34.54687394708753],
     [-58.492126857196006, -34.546485072925904],
     [-58.49197908344228, -34.54641982530078],
     [-58.49170746057446, -34.546803278962265],
     [-58.49116931400619, -34.547570112788975],
     [-58.49120447159953, -34.54758982333338],
     [-58.49116482937636, -34.5476472282181],
     [-58.49106846838657, -34.547602531343486],
     [-58.49050487639392, -34.548411552080175],
     [-58.489960837761515, -34.54918479031569],
     [-58.48940879208921, -34.549969577330046],
     [-58.488860056658716, -34.550758023091426],
     [-58.488314288980845, -34.55154343743008],
     [-58.48801523967705, -34.551973790727146],
     [-58.48796010459252, -34.55203929650728],
     [-58.487862079739706, -34.552155564254086],
     [-58.487862001307114, -34.552155657283194],
     [-58.48786171375778, -34.55215605393014],
     [-58.48795238357051, -34.55214595161485],
     [-58.48805168867999, -34.55217117746923],
     [-58.488178414926075, -34.55223191369204],
     [-58.488200170704076, -34.55225332334926],
     [-58.48822591766158, -34.55227866066954],
     [-58.48822582355801, -34.55227868298957],
     [-58.48827290689311, -34.55232529385221],
     [-58.48827299609382, -34.552325747251075],
     [-58.488300186454005, -34.552463953069704],
     [-58.488551445314165, -34.55272707475716],
     [-58.488699915862384, -34.55281605921198]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_1_9',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 974.0,
   'VIVIEND': 423.0,
   'HOGARES': 356.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.084104024676323,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4916463453598, -34.55219341113295],
     [-58.49256823834889, -34.55268094598425],
     [-58.493489886661294, -34.55316826262232],
     [-58.494412907860955, -34.55365627614479],
     [-58.49496458990004, -34.552870199451746],
     [-58.49543102319246, -34.55220548367236],
     [-58.49551438996194, -34.55208651509047],
     [-58.494592401465084, -34.55159956585646],
     [-58.493669316981716, -34.551111976079675],
     [-58.49274794585145, -34.55062522394914],
     [-58.49181253914055, -34.55013114406845],
     [-58.49134778917406, -34.55079077532976],
     [-58.49125982348285, -34.550915305669726],
     [-58.49110829310943, -34.55083702946834],
     [-58.49098315305533, -34.55077233881086],
     [-58.490490317744666, -34.55147021350303],
     [-58.490433062686016, -34.551552693083075],
     [-58.49056220500056, -34.551620693312884],
     [-58.490708458736364, -34.55169777418336],
     [-58.49084398628746, -34.55176915300274],
     [-58.4916463453598, -34.55219341113295]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 994.0,
   'VIVIEND': 381.0,
   'HOGARES': 366.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.072214143089354,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48586204220575, -34.56691635110608],
     [-58.486673969193376, -34.56733408959206],
     [-58.48680517583923, -34.56740152981776],
     [-58.48691172424325, -34.56727749230282],
     [-58.48765662867865, -34.56644570678461],
     [-58.487767856653335, -34.566321315427295],
     [-58.48856371873469, -34.565432118303555],
     [-58.48868966615757, -34.56529103250488],
     [-58.48770978773477, -34.56486559517745],
     [-58.48692948506894, -34.56452687274944],
     [-58.48672761861764, -34.56443247419849],
     [-58.48575515822558, -34.56397751204053],
     [-58.48481374241357, -34.5649890438295],
     [-58.48577591492647, -34.56546612845558],
     [-58.4848981446487, -34.566419548904435],
     [-58.485049101621385, -34.56649804398399],
     [-58.48586204220575, -34.56691635110608]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 815.0,
   'VIVIEND': 308.0,
   'HOGARES': 299.0,
   'HOGARES_': 32.0,
   'AREA_KM': 0.064150584135294,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479543427966824, -34.569263486892936],
     [-58.47943081504505, -34.56939075104017],
     [-58.479517523070115, -34.569430528910196],
     [-58.47977990409243, -34.569563318760565],
     [-58.47987287973573, -34.56961140519988],
     [-58.48016798749158, -34.56977854952397],
     [-58.48030626102805, -34.56985641842464],
     [-58.480382124403356, -34.56989978854345],
     [-58.48046199031701, -34.56994865109177],
     [-58.480747823738994, -34.570129246306074],
     [-58.48086055690167, -34.57020134359324],
     [-58.48119527192985, -34.570439678012015],
     [-58.481266285560295, -34.57049171044292],
     [-58.481337043797225, -34.57054339075189],
     [-58.48150206340011, -34.57067217062975],
     [-58.48162169907207, -34.57076729473559],
     [-58.481747209976035, -34.57086530518289],
     [-58.481842494766276, -34.570947967849335],
     [-58.481986657868696, -34.571076750332146],
     [-58.48207921943479, -34.571162089346345],
     [-58.48226212849567, -34.57132797869553],
     [-58.48272332115951, -34.57174516503955],
     [-58.48280513953235, -34.57182024079626],
     [-58.48281903072107, -34.57183281504109],
     [-58.48282090495557, -34.57183082977069],
     [-58.4829782400767, -34.571710369476094],
     [-58.48297848007385, -34.57171014048482],
     [-58.48288241025359, -34.571622953517426],
     [-58.48230268400778, -34.57109782713812],
     [-58.482250314486976, -34.571048820555376],
     [-58.482214038591145, -34.57101291020945],
     [-58.48186457580351, -34.5707124671077],
     [-58.4814659903581, -34.570400199348086],
     [-58.48138927473319, -34.57035732300393],
     [-58.48185270960412, -34.56982822731876],
     [-58.4819778241406, -34.56968926138934],
     [-58.482099023102954, -34.56955452138138],
     [-58.48281428972438, -34.56874453138642],
     [-58.4818980496763, -34.56818896428724],
     [-58.48098718579264, -34.567636558526615],
     [-58.48014926327309, -34.568580783425205],
     [-58.479237470167824, -34.56802808308064],
     [-58.47852557918798, -34.56883220660069],
     [-58.47864349992863, -34.568894586787415],
     [-58.47866206107122, -34.568906063449255],
     [-58.47873178890728, -34.56892725189039],
     [-58.479382513997926, -34.56920202897266],
     [-58.479453350717485, -34.56923180855817],
     [-58.479543427966824, -34.569263486892936]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_11',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 883.0,
   'VIVIEND': 395.0,
   'HOGARES': 345.0,
   'HOGARES_': 30.0,
   'AREA_KM': 0.073714797360308,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47852557918798, -34.56883220660069],
     [-58.479237470167824, -34.56802808308064],
     [-58.48014926327309, -34.568580783425205],
     [-58.48098718579264, -34.567636558526615],
     [-58.48007420543138, -34.56708294901262],
     [-58.47915987491668, -34.56652848771361],
     [-58.47824759987597, -34.56597521645812],
     [-58.477409918568554, -34.56692019744621],
     [-58.476564983480614, -34.56787341295739],
     [-58.476491273100876, -34.567956521463536],
     [-58.47642769407192, -34.568044488031475],
     [-58.476287333721025, -34.568180985173946],
     [-58.47637434337447, -34.56820956754467],
     [-58.47725858244966, -34.56853721791661],
     [-58.47735240463831, -34.568572841161114],
     [-58.477947520915954, -34.56879375832639],
     [-58.47826825230447, -34.568989777841416],
     [-58.47831004752675, -34.56896287059368],
     [-58.47836121021245, -34.568951314529194],
     [-58.47840999133655, -34.56895130826103],
     [-58.47849129829566, -34.56897819968041],
     [-58.478572692273296, -34.56901473910142],
     [-58.47880733822691, -34.56911654124907],
     [-58.47934185004698, -34.569350980955775],
     [-58.47943081504505, -34.56939075104017],
     [-58.479543427966824, -34.569263486892936],
     [-58.479453350717485, -34.56923180855817],
     [-58.479382513997926, -34.56920202897266],
     [-58.47873178890728, -34.56892725189039],
     [-58.47866206107122, -34.568906063449255],
     [-58.47864349992863, -34.568894586787415],
     [-58.47852557918798, -34.56883220660069]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 994.0,
   'VIVIEND': 491.0,
   'HOGARES': 390.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.077870619101383,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48680517583923, -34.56740152981776],
     [-58.486673969193376, -34.56733408959206],
     [-58.48586204220575, -34.56691635110608],
     [-58.485049101621385, -34.56649804398399],
     [-58.4848981446487, -34.566419548904435],
     [-58.48577591492647, -34.56546612845558],
     [-58.48481374241357, -34.5649890438295],
     [-58.48385328366739, -34.56451279637001],
     [-58.48299243308131, -34.56542873482632],
     [-58.48216509663105, -34.566309097679195],
     [-58.48250531941386, -34.56648904638863],
     [-58.483124379168196, -34.566804091224874],
     [-58.483288105961854, -34.566887375163404],
     [-58.483925564313054, -34.56721966665834],
     [-58.484089463558924, -34.56730520304984],
     [-58.48505507108821, -34.567809194483964],
     [-58.486012942076705, -34.56830902470607],
     [-58.4867107116881, -34.56751133924035],
     [-58.48680517583923, -34.56740152981776]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 730.0,
   'VIVIEND': 338.0,
   'HOGARES': 287.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.065097990817308,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48385328366739, -34.56451279637001],
     [-58.48481374241357, -34.5649890438295],
     [-58.48575515822558, -34.56397751204053],
     [-58.484783474679055, -34.56352296450271],
     [-58.484009149298096, -34.56316070065928],
     [-58.48302573598779, -34.56270078889483],
     [-58.48236654939747, -34.563563871533546],
     [-58.48225038660691, -34.563717977707206],
     [-58.48152940181461, -34.564674447654845],
     [-58.482497345922035, -34.565173459090765],
     [-58.481791245368875, -34.56611337833026],
     [-58.481975488631754, -34.5662088441603],
     [-58.48216509663105, -34.566309097679195],
     [-58.48299243308131, -34.56542873482632],
     [-58.48385328366739, -34.56451279637001]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 758.0,
   'VIVIEND': 307.0,
   'HOGARES': 270.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.084638467004061,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48069000205777, -34.56554294451996],
     [-58.480690732727716, -34.56554332328015],
     [-58.48082286837124, -34.56561175575456],
     [-58.481202589284834, -34.565808463130956],
     [-58.481791245368875, -34.56611337833026],
     [-58.482497345922035, -34.565173459090765],
     [-58.48152940181461, -34.564674447654845],
     [-58.48225038660691, -34.563717977707206],
     [-58.48236654939747, -34.563563871533546],
     [-58.48302573598779, -34.56270078889483],
     [-58.48287368987437, -34.56265848933818],
     [-58.482181311598595, -34.56246578108855],
     [-58.48139874592661, -34.56206258047522],
     [-58.48124328344698, -34.561982359176916],
     [-58.481183149121485, -34.56206901717432],
     [-58.48099736073166, -34.562328062364635],
     [-58.48080989810029, -34.56259264798428],
     [-58.48065423578756, -34.562810134599964],
     [-58.48055380886105, -34.56295420166062],
     [-58.48038640720607, -34.563087197408365],
     [-58.480061645255184, -34.563339335594335],
     [-58.4797988206389, -34.563541599983466],
     [-58.47954168993164, -34.56374087929835],
     [-58.47962152980041, -34.56368024622689],
     [-58.47977259547754, -34.56376907164027],
     [-58.4794681263944, -34.56395550886638],
     [-58.47931014860597, -34.564052785877905],
     [-58.47912160836348, -34.56414422161438],
     [-58.478941492071755, -34.56421861335316],
     [-58.47845493073604, -34.56438029997385],
     [-58.47871195839695, -34.564514071944906],
     [-58.47930034115367, -34.56482033731324],
     [-58.48024060463149, -34.56530965189665],
     [-58.480447746733475, -34.56541744093404],
     [-58.48064509829851, -34.56551966757034],
     [-58.48069000205777, -34.56554294451996]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 738.0,
   'VIVIEND': 368.0,
   'HOGARES': 298.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.05136657400623,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47871195839695, -34.564514071944906],
     [-58.4785183241004, -34.56468656531883],
     [-58.47754818301133, -34.56555107004185],
     [-58.47657759625181, -34.56641591910477],
     [-58.47575611840302, -34.5671478546317],
     [-58.47559030624498, -34.567297311704166],
     [-58.474523778860146, -34.56666684431133],
     [-58.474065846827806, -34.56718281310049],
     [-58.47399643397075, -34.567261035881565],
     [-58.47392403996595, -34.567342617980394],
     [-58.47399708518559, -34.567362118653875],
     [-58.4745675767552, -34.56755333574805],
     [-58.47499402285029, -34.567708014776414],
     [-58.47508520365488, -34.56774089350386],
     [-58.475175277756634, -34.567773349732946],
     [-58.475799158825964, -34.56800490846219],
     [-58.47619308751707, -34.568150009129965],
     [-58.476287333721025, -34.568180985173946],
     [-58.47642769407192, -34.568044488031475],
     [-58.476491273100876, -34.567956521463536],
     [-58.476564983480614, -34.56787341295739],
     [-58.477409918568554, -34.56692019744621],
     [-58.47824759987597, -34.56597521645812],
     [-58.47908500688963, -34.56503044088589],
     [-58.47930034115367, -34.56482033731324],
     [-58.47871195839695, -34.564514071944906]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 874.0,
   'VIVIEND': 423.0,
   'HOGARES': 353.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.048323155960903,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48024060463149, -34.56530965189665],
     [-58.47930034115367, -34.56482033731324],
     [-58.47908500688963, -34.56503044088589],
     [-58.47824759987597, -34.56597521645812],
     [-58.47915987491668, -34.56652848771361],
     [-58.48007420543138, -34.56708294901262],
     [-58.48098718579264, -34.567636558526615],
     [-58.48182483402918, -34.56669253904728],
     [-58.480910836680174, -34.566138020352284],
     [-58.481202589284834, -34.565808463130956],
     [-58.48082286837124, -34.56561175575456],
     [-58.480690732727716, -34.56554332328015],
     [-58.48069000205777, -34.56554294451996],
     [-58.48064509829851, -34.56551966757034],
     [-58.480447746733475, -34.56541744093404],
     [-58.48024060463149, -34.56530965189665]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 768.0,
   'VIVIEND': 314.0,
   'HOGARES': 295.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.040272596488893,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48273450118188, -34.567244375449945],
     [-58.48287294463837, -34.5673282979008],
     [-58.48365303508724, -34.567800358507796],
     [-58.48456843079, -34.568354292871334],
     [-58.485483412890446, -34.568907938699276],
     [-58.48612721130136, -34.56929747198366],
     [-58.48684804604735, -34.5687496452581],
     [-58.486752768101965, -34.56869924059178],
     [-58.486179995945946, -34.56839617742068],
     [-58.486012942076705, -34.56830902470607],
     [-58.48505507108821, -34.567809194483964],
     [-58.484089463558924, -34.56730520304984],
     [-58.483925564313054, -34.56721966665834],
     [-58.483288105961854, -34.566887375163404],
     [-58.483124379168196, -34.566804091224874],
     [-58.48250531941386, -34.56648904638863],
     [-58.48216509663105, -34.566309097679195],
     [-58.481975488631754, -34.5662088441603],
     [-58.481791245368875, -34.56611337833026],
     [-58.481202589284834, -34.565808463130956],
     [-58.480910836680174, -34.566138020352284],
     [-58.48182483402918, -34.56669253904728],
     [-58.48273450118188, -34.567244375449945]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1166.0,
   'VIVIEND': 580.0,
   'HOGARES': 477.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.052947635323048,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48372960536898, -34.569299598747754],
     [-58.48289212275413, -34.57024341959381],
     [-58.482776967423185, -34.570373229711755],
     [-58.482214038591145, -34.57101291020945],
     [-58.482250314486976, -34.571048820555376],
     [-58.48230268400778, -34.57109782713812],
     [-58.48288241025359, -34.571622953517426],
     [-58.48297848007385, -34.57171014048482],
     [-58.48331936811936, -34.57144858153849],
     [-58.4835435717627, -34.57127628679577],
     [-58.48436547365409, -34.57064472367075],
     [-58.48506351873842, -34.570108390727576],
     [-58.48518532033776, -34.57001477507531],
     [-58.48535785084789, -34.569882135088896],
     [-58.486011199334854, -34.569385594421156],
     [-58.48612721130136, -34.56929747198366],
     [-58.485483412890446, -34.568907938699276],
     [-58.48456843079, -34.568354292871334],
     [-58.48372960536898, -34.569299598747754]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_10_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 842.0,
   'VIVIEND': 386.0,
   'HOGARES': 318.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.064197754170239,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48365303508724, -34.567800358507796],
     [-58.48287294463837, -34.5673282979008],
     [-58.48273450118188, -34.567244375449945],
     [-58.48182483402918, -34.56669253904728],
     [-58.48098718579264, -34.567636558526615],
     [-58.4818980496763, -34.56818896428724],
     [-58.48281428972438, -34.56874453138642],
     [-58.482099023102954, -34.56955452138138],
     [-58.4819778241406, -34.56968926138934],
     [-58.48185270960412, -34.56982822731876],
     [-58.48138927473319, -34.57035732300393],
     [-58.4814659903581, -34.570400199348086],
     [-58.48186457580351, -34.5707124671077],
     [-58.482214038591145, -34.57101291020945],
     [-58.482776967423185, -34.570373229711755],
     [-58.48289212275413, -34.57024341959381],
     [-58.48372960536898, -34.569299598747754],
     [-58.48456843079, -34.568354292871334],
     [-58.48365303508724, -34.567800358507796]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 760.0,
   'VIVIEND': 388.0,
   'HOGARES': 328.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.037480880218931,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.480220834757255, -34.570085449033954],
     [-58.47930919400889, -34.56952767882631],
     [-58.47845497661755, -34.57049168311919],
     [-58.4778088531291, -34.571221003531434],
     [-58.47697971143132, -34.57215668375768],
     [-58.47715374761073, -34.57226039754848],
     [-58.477907197242715, -34.57269517302334],
     [-58.478720246672054, -34.57177737634323],
     [-58.47937462271247, -34.5710386132547],
     [-58.48011086799869, -34.57021201639965],
     [-58.480220834757255, -34.570085449033954]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 860.0,
   'VIVIEND': 346.0,
   'HOGARES': 283.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.10281943868354,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46843564873075, -34.57256718040278],
     [-58.46923775496296, -34.5730128523417],
     [-58.46938155773502, -34.57309270514671],
     [-58.47009861848717, -34.57350245987877],
     [-58.471049658630754, -34.57404599979305],
     [-58.471200106469134, -34.57413352618015],
     [-58.4719686980694, -34.57458080213265],
     [-58.472724962088776, -34.57368741659346],
     [-58.473500788391085, -34.57277085507736],
     [-58.47257520225257, -34.57222486725646],
     [-58.471652437856285, -34.57168042148399],
     [-58.471535709621364, -34.57161162591844],
     [-58.47072662055176, -34.57113519422474],
     [-58.47000829887248, -34.57071227384017],
     [-58.46981631053078, -34.570598339426574],
     [-58.468985982122085, -34.571579388892395],
     [-58.46824093433407, -34.572459722664895],
     [-58.46843564873075, -34.57256718040278]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_11',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 774.0,
   'VIVIEND': 344.0,
   'HOGARES': 278.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.088693538828969,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47026527801313, -34.57494409504061],
     [-58.47120611819344, -34.57548052143602],
     [-58.471358612072294, -34.57556748407404],
     [-58.472142628635204, -34.5760197578168],
     [-58.47228686545098, -34.57610298746611],
     [-58.47294725875831, -34.57648068688312],
     [-58.47308485517074, -34.57655560613644],
     [-58.473229178423345, -34.576634327536674],
     [-58.474019089526635, -34.57708405338127],
     [-58.47477902045372, -34.5762262895692],
     [-58.474634269970075, -34.576142147408085],
     [-58.47399328350117, -34.57576382148996],
     [-58.473853473541645, -34.575685875230995],
     [-58.47371170549209, -34.57560687263093],
     [-58.47302679286992, -34.575207629696315],
     [-58.47290145840777, -34.575129751537816],
     [-58.47274751529909, -34.57503398796802],
     [-58.4719686980694, -34.57458080213265],
     [-58.471200106469134, -34.57413352618015],
     [-58.471049658630754, -34.57404599979305],
     [-58.47009861848717, -34.57350245987877],
     [-58.46938155773502, -34.57309270514671],
     [-58.46923775496296, -34.5730128523417],
     [-58.46843564873075, -34.57256718040278],
     [-58.46824093433407, -34.572459722664895],
     [-58.467481653866564, -34.57335681318543],
     [-58.46768794868178, -34.573474483096525],
     [-58.46853416365426, -34.573956989424794],
     [-58.46932589733297, -34.574408435927445],
     [-58.47026527801313, -34.57494409504061]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 645.0,
   'VIVIEND': 320.0,
   'HOGARES': 267.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.030146912004776,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47943081504505, -34.56939075104017],
     [-58.47934185004698, -34.569350980955775],
     [-58.47880733822691, -34.56911654124907],
     [-58.478572692273296, -34.56901473910142],
     [-58.47849129829566, -34.56897819968041],
     [-58.47840999133655, -34.56895130826103],
     [-58.47836121021245, -34.568951314529194],
     [-58.47831004752675, -34.56896287059368],
     [-58.47826825230447, -34.568989777841416],
     [-58.477947520915954, -34.56879375832639],
     [-58.47735240463831, -34.568572841161114],
     [-58.47661512473797, -34.56939850621202],
     [-58.47741103439693, -34.56987250618893],
     [-58.477537811972205, -34.56994770350374],
     [-58.47845497661755, -34.57049168311919],
     [-58.47930919400889, -34.56952767882631],
     [-58.480220834757255, -34.570085449033954],
     [-58.480382124403356, -34.56989978854345],
     [-58.48030626102805, -34.56985641842464],
     [-58.48016798749158, -34.56977854952397],
     [-58.47987287973573, -34.56961140519988],
     [-58.47977990409243, -34.569563318760565],
     [-58.479517523070115, -34.569430528910196],
     [-58.47943081504505, -34.56939075104017]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 568.0,
   'VIVIEND': 301.0,
   'HOGARES': 254.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.049220215194702,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477537811972205, -34.56994770350374],
     [-58.47741103439693, -34.56987250618893],
     [-58.47661512473797, -34.56939850621202],
     [-58.47593169654161, -34.57007493276663],
     [-58.47501391567025, -34.57098328494981],
     [-58.47576547200266, -34.5714330037797],
     [-58.47595363898747, -34.571545098215495],
     [-58.47697971143132, -34.57215668375768],
     [-58.4778088531291, -34.571221003531434],
     [-58.47845497661755, -34.57049168311919],
     [-58.477537811972205, -34.56994770350374]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 888.0,
   'VIVIEND': 422.0,
   'HOGARES': 343.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.078563091366753,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47444256406417, -34.573326411909726],
     [-58.47434833188035, -34.57343269044988],
     [-58.473668103514825, -34.57423051419399],
     [-58.47448651872421, -34.57470164345927],
     [-58.474641910009495, -34.574793460967506],
     [-58.4754243210001, -34.575255995716475],
     [-58.47556447315241, -34.575339714895115],
     [-58.476350845526284, -34.57445207857946],
     [-58.47713234928254, -34.57356986027792],
     [-58.477907197242715, -34.57269517302334],
     [-58.47715374761073, -34.57226039754848],
     [-58.47697971143132, -34.57215668375768],
     [-58.47595363898747, -34.571545098215495],
     [-58.47520449417963, -34.572431531382065],
     [-58.47455969427608, -34.57319449680913],
     [-58.47444256406417, -34.573326411909726]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 920.0,
   'VIVIEND': 346.0,
   'HOGARES': 307.0,
   'HOGARES_': 48.0,
   'AREA_KM': 0.077513395484164,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47290145840777, -34.575129751537816],
     [-58.47302679286992, -34.575207629696315],
     [-58.47371170549209, -34.57560687263093],
     [-58.473853473541645, -34.575685875230995],
     [-58.47399328350117, -34.57576382148996],
     [-58.474634269970075, -34.576142147408085],
     [-58.47477902045372, -34.5762262895692],
     [-58.47556447315241, -34.575339714895115],
     [-58.4754243210001, -34.575255995716475],
     [-58.474641910009495, -34.574793460967506],
     [-58.47448651872421, -34.57470164345927],
     [-58.473668103514825, -34.57423051419399],
     [-58.47434833188035, -34.57343269044988],
     [-58.47444256406417, -34.573326411909726],
     [-58.47455969427608, -34.57319449680913],
     [-58.47520449417963, -34.572431531382065],
     [-58.47595363898747, -34.571545098215495],
     [-58.47576547200266, -34.5714330037797],
     [-58.47501391567025, -34.57098328494981],
     [-58.47425991378674, -34.571874079168396],
     [-58.473500788391085, -34.57277085507736],
     [-58.472724962088776, -34.57368741659346],
     [-58.4719686980694, -34.57458080213265],
     [-58.47274751529909, -34.57503398796802],
     [-58.47290145840777, -34.575129751537816]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 858.0,
   'VIVIEND': 373.0,
   'HOGARES': 319.0,
   'HOGARES_': 15.0,
   'AREA_KM': 0.059827695370257,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47409625653924, -34.57043427947591],
     [-58.47333629084579, -34.571328941937324],
     [-58.47257520225257, -34.57222486725646],
     [-58.473500788391085, -34.57277085507736],
     [-58.47425991378674, -34.571874079168396],
     [-58.47501391567025, -34.57098328494981],
     [-58.47593169654161, -34.57007493276663],
     [-58.47661512473797, -34.56939850621202],
     [-58.47735240463831, -34.568572841161114],
     [-58.47725858244966, -34.56853721791661],
     [-58.47637434337447, -34.56820956754467],
     [-58.476287333721025, -34.568180985173946],
     [-58.475690576506814, -34.56884796403966],
     [-58.47501804133508, -34.569517130725245],
     [-58.47409625653924, -34.57043427947591]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 778.0,
   'VIVIEND': 391.0,
   'HOGARES': 330.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.05139951252228,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47241463818979, -34.57078492429196],
     [-58.47232313091453, -34.57089387720174],
     [-58.471652437856285, -34.57168042148399],
     [-58.47257520225257, -34.57222486725646],
     [-58.47333629084579, -34.571328941937324],
     [-58.47409625653924, -34.57043427947591],
     [-58.47501804133508, -34.569517130725245],
     [-58.475690576506814, -34.56884796403966],
     [-58.47459124933533, -34.56819383846947],
     [-58.47399848496313, -34.568899541792085],
     [-58.473177161188566, -34.56987723885818],
     [-58.47241463818979, -34.57078492429196]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 922.0,
   'VIVIEND': 412.0,
   'HOGARES': 344.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.064206544532895,
   'partidas': 23.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.476287333721025, -34.568180985173946],
     [-58.47619308751707, -34.568150009129965],
     [-58.475799158825964, -34.56800490846219],
     [-58.475175277756634, -34.567773349732946],
     [-58.47508520365488, -34.56774089350386],
     [-58.47499402285029, -34.567708014776414],
     [-58.4745675767552, -34.56755333574805],
     [-58.47399708518559, -34.567362118653875],
     [-58.47392403996595, -34.567342617980394],
     [-58.47366894143352, -34.5676451116755],
     [-58.47309030501666, -34.568350034719636],
     [-58.47242747427022, -34.56915742837691],
     [-58.47227842612448, -34.56933054197737],
     [-58.47149410435684, -34.57024160379573],
     [-58.470798040629184, -34.571050047103206],
     [-58.47072662055176, -34.57113519422474],
     [-58.471535709621364, -34.57161162591844],
     [-58.471652437856285, -34.57168042148399],
     [-58.47232313091453, -34.57089387720174],
     [-58.47241463818979, -34.57078492429196],
     [-58.473177161188566, -34.56987723885818],
     [-58.47399848496313, -34.568899541792085],
     [-58.47459124933533, -34.56819383846947],
     [-58.475690576506814, -34.56884796403966],
     [-58.476287333721025, -34.568180985173946]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_11_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 869.0,
   'VIVIEND': 469.0,
   'HOGARES': 373.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.052707650760904,
   'partidas': 24.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47240234646924, -34.56689571237741],
     [-58.472596123884585, -34.56701012091358],
     [-58.47276869617119, -34.56710968615623],
     [-58.47218332894918, -34.567801295408664],
     [-58.47136165349723, -34.56877229019891],
     [-58.47057664746141, -34.569699895857894],
     [-58.46981631053078, -34.570598339426574],
     [-58.47000829887248, -34.57071227384017],
     [-58.47072662055176, -34.57113519422474],
     [-58.470798040629184, -34.571050047103206],
     [-58.47149410435684, -34.57024160379573],
     [-58.47227842612448, -34.56933054197737],
     [-58.47242747427022, -34.56915742837691],
     [-58.47309030501666, -34.568350034719636],
     [-58.47366894143352, -34.5676451116755],
     [-58.47392403996595, -34.567342617980394],
     [-58.47399643397075, -34.567261035881565],
     [-58.47339181805889, -34.56710999223467],
     [-58.47303173891319, -34.56701910920641],
     [-58.47294063470874, -34.566996388374136],
     [-58.472662986231896, -34.56694497314531],
     [-58.47240234646924, -34.56689571237741]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 661.0,
   'VIVIEND': 352.0,
   'HOGARES': 272.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.023592352127314,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48369187977478, -34.57602824771522],
     [-58.48342654612636, -34.57587836085884],
     [-58.48243112601139, -34.57530900878887],
     [-58.48229105268197, -34.57522748061962],
     [-58.481157381835494, -34.57619436440639],
     [-58.48213720876296, -34.577068100738785],
     [-58.48369187977478, -34.57602824771522]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1098.0,
   'VIVIEND': 619.0,
   'HOGARES': 501.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.030847459437847,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48116102536786, -34.574574617051724],
     [-58.48018760319412, -34.57401172221759],
     [-58.480068651086576, -34.5739429351582],
     [-58.47987133366167, -34.57410014897494],
     [-58.47913686724009, -34.574634273657665],
     [-58.47956888973823, -34.57477787923252],
     [-58.481157381835494, -34.57619436440639],
     [-58.48229105268197, -34.57522748061962],
     [-58.48116102536786, -34.574574617051724]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1209.0,
   'VIVIEND': 628.0,
   'HOGARES': 509.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.04122543409434,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47884150608496, -34.57323414725675],
     [-58.477907197242715, -34.57269517302334],
     [-58.47713234928254, -34.57356986027792],
     [-58.476350845526284, -34.57445207857946],
     [-58.47724991492934, -34.57498240664913],
     [-58.47825305377542, -34.57423522745631],
     [-58.47891889325952, -34.574536202484815],
     [-58.47913686724009, -34.574634273657665],
     [-58.47987133366167, -34.57410014897494],
     [-58.480068651086576, -34.5739429351582],
     [-58.47944988190527, -34.57358512791948],
     [-58.479267326046624, -34.57347979883521],
     [-58.47884150608496, -34.57323414725675]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 911.0,
   'VIVIEND': 437.0,
   'HOGARES': 356.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.06510403190577,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47724991492934, -34.57498240664913],
     [-58.476350845526284, -34.57445207857946],
     [-58.47556447315241, -34.575339714895115],
     [-58.47477902045372, -34.5762262895692],
     [-58.474019089526635, -34.57708405338127],
     [-58.47425094712518, -34.57721607619911],
     [-58.474406938396186, -34.577304865689804],
     [-58.47499437778055, -34.5776381939682],
     [-58.47598386678409, -34.57692730335395],
     [-58.47682827757383, -34.576320648687116],
     [-58.47742665261861, -34.57588634501642],
     [-58.47795257884332, -34.5755128231731],
     [-58.478111000720354, -34.575389209551176],
     [-58.47827921171455, -34.575257918280585],
     [-58.47913686724009, -34.574634273657665],
     [-58.47891889325952, -34.574536202484815],
     [-58.47825305377542, -34.57423522745631],
     [-58.47724991492934, -34.57498240664913]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 803.0,
   'VIVIEND': 397.0,
   'HOGARES': 328.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.066465735281944,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47956888973823, -34.57477787923252],
     [-58.47913686724009, -34.574634273657665],
     [-58.47827921171455, -34.575257918280585],
     [-58.478111000720354, -34.575389209551176],
     [-58.47795257884332, -34.5755128231731],
     [-58.47742665261861, -34.57588634501642],
     [-58.47817814369251, -34.57659450383469],
     [-58.477715428587715, -34.577203163741515],
     [-58.4780001904052, -34.57747292177137],
     [-58.478419502136326, -34.577870199274905],
     [-58.47852271250663, -34.57796694816459],
     [-58.47997860907008, -34.5769874380807],
     [-58.481157381835494, -34.57619436440639],
     [-58.47956888973823, -34.57477787923252]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 553.0,
   'VIVIEND': 358.0,
   'HOGARES': 260.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.019566273574948,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481157381835494, -34.57619436440639],
     [-58.47997860907008, -34.5769874380807],
     [-58.48080145328135, -34.57796282860784],
     [-58.48095366470621, -34.57785970557705],
     [-58.48213720876296, -34.577068100738785],
     [-58.481157381835494, -34.57619436440639]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 858.0,
   'VIVIEND': 521.0,
   'HOGARES': 386.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.040483941017866,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48080145328135, -34.57796282860784],
     [-58.47997860907008, -34.5769874380807],
     [-58.47852271250663, -34.57796694816459],
     [-58.477173113042504, -34.578874877657576],
     [-58.477598615616834, -34.57911673198191],
     [-58.47805520126969, -34.579376257262204],
     [-58.47838797892811, -34.57957283798866],
     [-58.47950627880231, -34.57883985979322],
     [-58.48080145328135, -34.57796282860784]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_12_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 716.0,
   'VIVIEND': 326.0,
   'HOGARES': 267.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.05374820693472,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4780001904052, -34.57747292177137],
     [-58.477715428587715, -34.577203163741515],
     [-58.47817814369251, -34.57659450383469],
     [-58.47742665261861, -34.57588634501642],
     [-58.47682827757383, -34.576320648687116],
     [-58.47598386678409, -34.57692730335395],
     [-58.47499437778055, -34.5776381939682],
     [-58.47655031867305, -34.5785210706444],
     [-58.47673322243983, -34.57862485434151],
     [-58.477173113042504, -34.578874877657576],
     [-58.47852271250663, -34.57796694816459],
     [-58.478419502136326, -34.577870199274905],
     [-58.4780001904052, -34.57747292177137]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 898.0,
   'VIVIEND': 536.0,
   'HOGARES': 407.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.031544171082109,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48517853774362, -34.57391534006228],
     [-58.485289174586015, -34.57375841543059],
     [-58.48522045273778, -34.573700258076265],
     [-58.48485581274553, -34.573397220794156],
     [-58.484584931632234, -34.57317170223651],
     [-58.4843956298722, -34.57301053595105],
     [-58.4842625403448, -34.5729314736045],
     [-58.484181980961466, -34.57285423289724],
     [-58.484232365786234, -34.57279147641093],
     [-58.48379391214396, -34.57245718073765],
     [-58.48377014980622, -34.57247838147419],
     [-58.48368209483155, -34.57238690614364],
     [-58.48320345660153, -34.571955675111326],
     [-58.48305219034399, -34.57182126539566],
     [-58.483072500704836, -34.57180259047542],
     [-58.4829782400767, -34.571710369476094],
     [-58.48282090495557, -34.57183082977069],
     [-58.48281903072107, -34.57183281504109],
     [-58.48280513953235, -34.57182024079626],
     [-58.48281885827606, -34.57183269684047],
     [-58.48263287676972, -34.57197504317357],
     [-58.48190739083823, -34.572530099111695],
     [-58.48363199881594, -34.573540749218374],
     [-58.483792677109065, -34.57363487817209],
     [-58.48487579719578, -34.574273148283496],
     [-58.48517853774362, -34.57391534006228]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 872.0,
   'VIVIEND': 483.0,
   'HOGARES': 389.0,
   'HOGARES_': 16.0,
   'AREA_KM': 0.041758494080745,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481266285560295, -34.57049171044292],
     [-58.48119527192985, -34.570439678012015],
     [-58.48086055690167, -34.57020134359324],
     [-58.480747823738994, -34.570129246306074],
     [-58.48046199031701, -34.56994865109177],
     [-58.480382124403356, -34.56989978854345],
     [-58.480220834757255, -34.570085449033954],
     [-58.48011086799869, -34.57021201639965],
     [-58.47937462271247, -34.5710386132547],
     [-58.47954857437056, -34.571142182814],
     [-58.48030305013637, -34.57158708446852],
     [-58.48122135672933, -34.57212731051937],
     [-58.48190739083823, -34.572530099111695],
     [-58.48263287676972, -34.57197504317357],
     [-58.48281885827606, -34.57183269684047],
     [-58.48280513953235, -34.57182024079626],
     [-58.48272332115951, -34.57174516503955],
     [-58.48226212849567, -34.57132797869553],
     [-58.48207921943479, -34.571162089346345],
     [-58.481986657868696, -34.571076750332146],
     [-58.481842494766276, -34.570947967849335],
     [-58.481747209976035, -34.57086530518289],
     [-58.48162169907207, -34.57076729473559],
     [-58.48150206340011, -34.57067217062975],
     [-58.481337043797225, -34.57054339075189],
     [-58.481266285560295, -34.57049171044292]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1564.0,
   'VIVIEND': 962.0,
   'HOGARES': 721.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.041766781493753,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48030305013637, -34.57158708446852],
     [-58.47954857437056, -34.571142182814],
     [-58.47937462271247, -34.5710386132547],
     [-58.478720246672054, -34.57177737634323],
     [-58.477907197242715, -34.57269517302334],
     [-58.47884150608496, -34.57323414725675],
     [-58.479267326046624, -34.57347979883521],
     [-58.47944988190527, -34.57358512791948],
     [-58.480068651086576, -34.5739429351582],
     [-58.48025966862425, -34.573790722014245],
     [-58.48103786755006, -34.57319538565994],
     [-58.47963718697209, -34.57233747398983],
     [-58.48030305013637, -34.57158708446852]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1257.0,
   'VIVIEND': 625.0,
   'HOGARES': 526.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.03986608503741,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48122135672933, -34.57212731051937],
     [-58.48030305013637, -34.57158708446852],
     [-58.47963718697209, -34.57233747398983],
     [-58.48103786755006, -34.57319538565994],
     [-58.481897527946394, -34.573697586424984],
     [-58.48298872431031, -34.57434326650429],
     [-58.483511737219665, -34.57369218093972],
     [-58.48363199881594, -34.573540749218374],
     [-58.48190739083823, -34.572530099111695],
     [-58.48122135672933, -34.57212731051937]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1077.0,
   'VIVIEND': 577.0,
   'HOGARES': 475.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.027710499872088,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481897527946394, -34.573697586424984],
     [-58.48103786755006, -34.57319538565994],
     [-58.48025966862425, -34.573790722014245],
     [-58.480068651086576, -34.5739429351582],
     [-58.48018760319412, -34.57401172221759],
     [-58.48116102536786, -34.574574617051724],
     [-58.48229105268197, -34.57522748061962],
     [-58.48298872431031, -34.57434326650429],
     [-58.481897527946394, -34.573697586424984]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 911.0,
   'VIVIEND': 497.0,
   'HOGARES': 395.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.020911960205883,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48423218819756, -34.575074686152306],
     [-58.48298872431031, -34.57434326650429],
     [-58.48229105268197, -34.57522748061962],
     [-58.48243112601139, -34.57530900878887],
     [-58.48342654612636, -34.57587836085884],
     [-58.48369187977478, -34.57602824771522],
     [-58.4845742290435, -34.5755413941123],
     [-58.48479666422058, -34.575410929220844],
     [-58.48423218819756, -34.575074686152306]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_13_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 493.0,
   'VIVIEND': 299.0,
   'HOGARES': 249.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.030343849787176,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48601834599443, -34.574553433296565],
     [-58.48619828874184, -34.574410649778606],
     [-58.4860794143249, -34.574334967036414],
     [-58.48593482409821, -34.57424393668979],
     [-58.48583647220097, -34.57418177116778],
     [-58.48573760732918, -34.57411129565568],
     [-58.485660710812496, -34.57405018229619],
     [-58.48555349788642, -34.57396203183217],
     [-58.485289174586015, -34.57375841543059],
     [-58.48517853774362, -34.57391534006228],
     [-58.48487579719578, -34.574273148283496],
     [-58.483792677109065, -34.57363487817209],
     [-58.48363199881594, -34.573540749218374],
     [-58.483511737219665, -34.57369218093972],
     [-58.48298872431031, -34.57434326650429],
     [-58.48423218819756, -34.575074686152306],
     [-58.48479666422058, -34.575410929220844],
     [-58.48584379423889, -34.57479678068286],
     [-58.48576068816579, -34.5747584154518],
     [-58.48601834599443, -34.574553433296565]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1000.0,
   'VIVIEND': 490.0,
   'HOGARES': 373.0,
   'HOGARES_': 30.0,
   'AREA_KM': 0.025273504021287,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4860216825272, -34.57613557316027],
     [-58.48531958420328, -34.576958818195585],
     [-58.486326710239666, -34.57753582047007],
     [-58.48701884541499, -34.57672426205021],
     [-58.48773547880886, -34.57588389125699],
     [-58.48720155979126, -34.575571247641896],
     [-58.48694686395586, -34.57542214095336],
     [-58.486735512225685, -34.57529837776087],
     [-58.4860216825272, -34.57613557316027]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1023.0,
   'VIVIEND': 534.0,
   'HOGARES': 441.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.056928434767485,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.481332230728896, -34.579879541902],
     [-58.48068318370593, -34.579510407671975],
     [-58.47950627880231, -34.57883985979322],
     [-58.47838797892811, -34.57957283798866],
     [-58.47863253914975, -34.579717315793125],
     [-58.47958328128452, -34.580267690208515],
     [-58.47988345100495, -34.58044138362636],
     [-58.48039352953475, -34.58073666780342],
     [-58.48052901187303, -34.58081559306842],
     [-58.48154535041336, -34.581407422058426],
     [-58.48241327319793, -34.58191278628639],
     [-58.4825338566869, -34.58198290875333],
     [-58.483349490481004, -34.58102663087114],
     [-58.482346857173965, -34.5804565051676],
     [-58.481332230728896, -34.579879541902]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 914.0,
   'VIVIEND': 510.0,
   'HOGARES': 400.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.031407858155012,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48479666422058, -34.575410929220844],
     [-58.4845742290435, -34.5755413941123],
     [-58.48369187977478, -34.57602824771522],
     [-58.48393822538507, -34.576167432884105],
     [-58.484311109634774, -34.57638103313073],
     [-58.48531958420328, -34.576958818195585],
     [-58.4860216825272, -34.57613557316027],
     [-58.486735512225685, -34.57529837776087],
     [-58.48601009179227, -34.574873651805724],
     [-58.48584379423889, -34.57479678068286],
     [-58.48479666422058, -34.575410929220844]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 778.0,
   'VIVIEND': 403.0,
   'HOGARES': 308.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.019696496645927,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48531958420328, -34.576958818195585],
     [-58.484311109634774, -34.57638103313073],
     [-58.48321149792436, -34.57767349876748],
     [-58.484220660679796, -34.5782475602134],
     [-58.48531958420328, -34.576958818195585]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 866.0,
   'VIVIEND': 602.0,
   'HOGARES': 407.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.019642291800797,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.486326710239666, -34.57753582047007],
     [-58.48531958420328, -34.576958818195585],
     [-58.484220660679796, -34.5782475602134],
     [-58.48523000761299, -34.578821683648215],
     [-58.486326710239666, -34.57753582047007]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 986.0,
   'VIVIEND': 513.0,
   'HOGARES': 421.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.019553463260829,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.487332318525254, -34.5781158429038],
     [-58.48649540329909, -34.57763247950499],
     [-58.486326710239666, -34.57753582047007],
     [-58.48523000761299, -34.578821683648215],
     [-58.48623553637054, -34.579393686703455],
     [-58.487332318525254, -34.5781158429038]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 778.0,
   'VIVIEND': 393.0,
   'HOGARES': 318.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.033897597905874,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48523000761299, -34.578821683648215],
     [-58.484220660679796, -34.5782475602134],
     [-58.484092474838235, -34.57839786700765],
     [-58.48326810927639, -34.579369715378434],
     [-58.48427235479001, -34.57994462214561],
     [-58.485299338219015, -34.58048430452766],
     [-58.48623553637054, -34.579393686703455],
     [-58.48523000761299, -34.578821683648215]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1057.0,
   'VIVIEND': 569.0,
   'HOGARES': 432.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.054945168734312,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4822595347082, -34.57879226573077],
     [-58.48326810927639, -34.579369715378434],
     [-58.484092474838235, -34.57839786700765],
     [-58.484220660679796, -34.5782475602134],
     [-58.48321149792436, -34.57767349876748],
     [-58.484311109634774, -34.57638103313073],
     [-58.48393822538507, -34.576167432884105],
     [-58.48369187977478, -34.57602824771522],
     [-58.48213720876296, -34.577068100738785],
     [-58.48095366470621, -34.57785970557705],
     [-58.48080145328135, -34.57796282860784],
     [-58.4822595347082, -34.57879226573077]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 971.0,
   'VIVIEND': 633.0,
   'HOGARES': 469.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.043609713743508,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4822595347082, -34.57879226573077],
     [-58.48080145328135, -34.57796282860784],
     [-58.47950627880231, -34.57883985979322],
     [-58.48068318370593, -34.579510407671975],
     [-58.481332230728896, -34.579879541902],
     [-58.482346857173965, -34.5804565051676],
     [-58.48243214814319, -34.580355362952865],
     [-58.48326810927639, -34.579369715378434],
     [-58.4822595347082, -34.57879226573077]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_14_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 800.0,
   'VIVIEND': 420.0,
   'HOGARES': 324.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.047475419821858,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.483349490481004, -34.58102663087114],
     [-58.4825338566869, -34.58198290875333],
     [-58.483520588012475, -34.58255641582455],
     [-58.48434694282121, -34.58159379140561],
     [-58.485299338219015, -34.58048430452766],
     [-58.48427235479001, -34.57994462214561],
     [-58.48326810927639, -34.579369715378434],
     [-58.48243214814319, -34.580355362952865],
     [-58.482346857173965, -34.5804565051676],
     [-58.483349490481004, -34.58102663087114]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 884.0,
   'VIVIEND': 508.0,
   'HOGARES': 378.0,
   'HOGARES_': 24.0,
   'AREA_KM': 0.065756269545056,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492781040163095, -34.578246173217714],
     [-58.492702669734584, -34.578373236930446],
     [-58.492464455528044, -34.5786524549418],
     [-58.49173490915009, -34.57950715219945],
     [-58.491063052878125, -34.58029436566847],
     [-58.49253823025297, -34.581150154989146],
     [-58.492852822862055, -34.5813326863386],
     [-58.493018305601076, -34.58122236182418],
     [-58.49372838716688, -34.580681399723396],
     [-58.49385981336718, -34.58058122372448],
     [-58.494685135561944, -34.57995240815217],
     [-58.4948157934421, -34.57985293555102],
     [-58.4949451733636, -34.579752195519106],
     [-58.49512783786295, -34.579612567308644],
     [-58.495173461361574, -34.57957776585976],
     [-58.49530743751799, -34.5794753340472],
     [-58.495203377519395, -34.57943796680561],
     [-58.49479002556327, -34.57926828458071],
     [-58.49438885461039, -34.57910873880566],
     [-58.49433443754247, -34.57908086512527],
     [-58.4942960302991, -34.579060593039834],
     [-58.49425200253695, -34.57903743502242],
     [-58.49419758789883, -34.579015758568225],
     [-58.49406916559191, -34.57894522706414],
     [-58.49376736044655, -34.57878875230297],
     [-58.49353776860853, -34.57866247034939],
     [-58.49288161042243, -34.578293684413886],
     [-58.492781040163095, -34.578246173217714]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 848.0,
   'VIVIEND': 368.0,
   'HOGARES': 297.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.079401903007567,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489224682754454, -34.582652846267976],
     [-58.4887615843182, -34.583246828968896],
     [-58.48839253078191, -34.583720295186005],
     [-58.488297798606446, -34.58384242974471],
     [-58.487611258854585, -34.58472814945271],
     [-58.48750316080345, -34.584866483544786],
     [-58.488193075487175, -34.58526599565741],
     [-58.488905158456156, -34.58465280686388],
     [-58.48923187039142, -34.58437153457516],
     [-58.48966379414952, -34.58399967335796],
     [-58.489837022228315, -34.58385047762348],
     [-58.48991908188251, -34.58377975398066],
     [-58.490441910881906, -34.58332885429872],
     [-58.49115098122325, -34.58271727264379],
     [-58.49133901506928, -34.582555113336234],
     [-58.49180488282722, -34.582152813429964],
     [-58.491942865765296, -34.58204080677382],
     [-58.49046729614758, -34.58105867034643],
     [-58.49006481375911, -34.5815750374208],
     [-58.488992806555714, -34.58096258683775],
     [-58.488143305410915, -34.5820522919747],
     [-58.48879103988528, -34.582412020297674],
     [-58.489224682754454, -34.582652846267976]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_11',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 844.0,
   'VIVIEND': 323.0,
   'HOGARES': 272.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.069338604845237,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.486147637072534, -34.582617700974176],
     [-58.48535928086785, -34.58362476771235],
     [-58.48643266062907, -34.584246475173586],
     [-58.48750316080345, -34.584866483544786],
     [-58.487611258854585, -34.58472814945271],
     [-58.488297798606446, -34.58384242974471],
     [-58.48839253078191, -34.583720295186005],
     [-58.4887615843182, -34.583246828968896],
     [-58.489224682754454, -34.582652846267976],
     [-58.48879103988528, -34.582412020297674],
     [-58.488143305410915, -34.5820522919747],
     [-58.48706271003369, -34.58145207999966],
     [-58.486227476016815, -34.58251571210674],
     [-58.486147637072534, -34.582617700974176]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_12',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 798.0,
   'VIVIEND': 312.0,
   'HOGARES': 284.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.05696280178678,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.486178932160755, -34.5809653437109],
     [-58.48541523659953, -34.580545199525254],
     [-58.485299338219015, -34.58048430452766],
     [-58.48434694282121, -34.58159379140561],
     [-58.483520588012475, -34.58255641582455],
     [-58.484146509872666, -34.58292018663954],
     [-58.484495069804915, -34.58312273383392],
     [-58.48522395983483, -34.58354634078344],
     [-58.48535928086785, -34.58362476771235],
     [-58.486147637072534, -34.582617700974176],
     [-58.486227476016815, -34.58251571210674],
     [-58.48706271003369, -34.58145207999966],
     [-58.4869418689533, -34.58138499027203],
     [-58.486178932160755, -34.5809653437109]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_13',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 690.0,
   'VIVIEND': 282.0,
   'HOGARES': 262.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.02797775508225,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.487918857072, -34.58035118353047],
     [-58.48704930261185, -34.579856563057774],
     [-58.48623553637054, -34.579393686703455],
     [-58.485299338219015, -34.58048430452766],
     [-58.48541523659953, -34.580545199525254],
     [-58.486178932160755, -34.5809653437109],
     [-58.4869418689533, -34.58138499027203],
     [-58.48706271003369, -34.58145207999966],
     [-58.487161356987045, -34.58132649480566],
     [-58.487918857072, -34.58035118353047]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 844.0,
   'VIVIEND': 547.0,
   'HOGARES': 422.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.029332684115984,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49151050981793, -34.57789344551689],
     [-58.491396721024564, -34.578027347856946],
     [-58.490671681275394, -34.578880629314696],
     [-58.48999624646038, -34.579675443576086],
     [-58.49106305287811, -34.58029436566847],
     [-58.49173490915009, -34.57950715219945],
     [-58.492464455528044, -34.5786524549418],
     [-58.492702669734584, -34.578373236930446],
     [-58.49259385383095, -34.57832494478539],
     [-58.49248641705854, -34.578441222748786],
     [-58.49157680243286, -34.57791488951633],
     [-58.49151050981793, -34.57789344551689]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 997.0,
   'VIVIEND': 569.0,
   'HOGARES': 420.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.045254284759223,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48960804320964, -34.57825275913871],
     [-58.488930815534225, -34.579048201796475],
     [-58.489807787796856, -34.57956618795904],
     [-58.48999624646038, -34.579675443576086],
     [-58.490671681275394, -34.578880629314696],
     [-58.491396721024564, -34.578027347856946],
     [-58.49151065286405, -34.5778875518056],
     [-58.489385501905595, -34.57663661935929],
     [-58.48925491323876, -34.57677344480429],
     [-58.488897113081364, -34.57719381108747],
     [-58.48853505385082, -34.577619388552336],
     [-58.48960804320964, -34.57825275913871]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 974.0,
   'VIVIEND': 537.0,
   'HOGARES': 418.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.065228555014879,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48619828874184, -34.574410649778606],
     [-58.48601834599442, -34.574553433296565],
     [-58.485760688165776, -34.5747584154518],
     [-58.48584379423889, -34.57479678068285],
     [-58.486010091792245, -34.5748736518057],
     [-58.486735512225685, -34.57529837776086],
     [-58.48694686395586, -34.57542214095334],
     [-58.48720155979125, -34.575571247641896],
     [-58.487735478808844, -34.57588389125698],
     [-58.48701884541499, -34.576724262050206],
     [-58.48853505385082, -34.577619388552336],
     [-58.488897113081364, -34.57719381108747],
     [-58.48925491323876, -34.57677344480429],
     [-58.4893772301465, -34.5766229444931],
     [-58.49035297221851, -34.57719714762902],
     [-58.49151891801775, -34.577880711518674],
     [-58.49248641217993, -34.57842754607982],
     [-58.492595794430414, -34.57831312128287],
     [-58.492702669734584, -34.578373236930446],
     [-58.49278104016307, -34.578246173217714],
     [-58.49279783259194, -34.578229868179555],
     [-58.49172508507856, -34.57761370828285],
     [-58.490648245477544, -34.576995051464436],
     [-58.489572717109475, -34.57637693052494],
     [-58.48848066349431, -34.57574958113004],
     [-58.48882926360231, -34.57531491964336],
     [-58.48772158896025, -34.57470704241769],
     [-58.48660515984498, -34.57409436797285],
     [-58.48619828874184, -34.574410649778606]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 913.0,
   'VIVIEND': 497.0,
   'HOGARES': 393.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.031734035505176,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48701884541499, -34.57672426205021],
     [-58.486326710239666, -34.57753582047007],
     [-58.48649540329909, -34.57763247950499],
     [-58.487332318525254, -34.5781158429038],
     [-58.48785552319051, -34.57841799488374],
     [-58.48807803963837, -34.578546612987985],
     [-58.488230982799486, -34.57863489245643],
     [-58.48893081553424, -34.57904820179649],
     [-58.48960804320964, -34.578252759138714],
     [-58.4885350538508, -34.57761938855235],
     [-58.48701884541499, -34.57672426205021]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 829.0,
   'VIVIEND': 423.0,
   'HOGARES': 343.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.015102829566643,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48785552319051, -34.57841799488374],
     [-58.487332318525254, -34.5781158429038],
     [-58.48623553637054, -34.579393686703455],
     [-58.48704930261185, -34.579856563057774],
     [-58.48807803963837, -34.578546612987985],
     [-58.48785552319051, -34.57841799488374]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 921.0,
   'VIVIEND': 483.0,
   'HOGARES': 383.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.01663190020299,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48893081553424, -34.57904820179649],
     [-58.488230982799486, -34.57863489245643],
     [-58.48807803963837, -34.578546612987985],
     [-58.48704930261185, -34.579856563057774],
     [-58.487918857072, -34.58035118353047],
     [-58.48893081553424, -34.57904820179649]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 938.0,
   'VIVIEND': 456.0,
   'HOGARES': 364.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.03770589525795,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489996246460386, -34.57967544357609],
     [-58.48980778779688, -34.57956618795904],
     [-58.48893081553424, -34.57904820179649],
     [-58.487918857072, -34.58035118353047],
     [-58.487161356987045, -34.58132649480566],
     [-58.48706271003369, -34.58145207999966],
     [-58.488143305410915, -34.5820522919747],
     [-58.488992806555714, -34.58096258683775],
     [-58.489996246460386, -34.57967544357609]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_15_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 995.0,
   'VIVIEND': 553.0,
   'HOGARES': 426.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.040114457085043,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49046729614758, -34.58105867034643],
     [-58.491942865765296, -34.58204080677382],
     [-58.492644862170266, -34.58147126096028],
     [-58.492852822862055, -34.5813326863386],
     [-58.49253823025297, -34.581150154989146],
     [-58.491063052878125, -34.58029436566847],
     [-58.489996246460386, -34.57967544357609],
     [-58.488992806555714, -34.58096258683775],
     [-58.49006481375911, -34.5815750374208],
     [-58.49046729614758, -34.58105867034643]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1110.0,
   'VIVIEND': 447.0,
   'HOGARES': 395.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.099628546517745,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.491173513241385, -34.574383815495175],
     [-58.492263666423966, -34.57498138379639],
     [-58.49335434614417, -34.57557922386101],
     [-58.49395557649659, -34.574828494806425],
     [-58.49455645570555, -34.57407832618253],
     [-58.49465576440564, -34.57395435435842],
     [-58.49525637587538, -34.573204816068866],
     [-58.494152865139924, -34.57262608091844],
     [-58.49349761234571, -34.57228250940477],
     [-58.49304971033897, -34.57204761733903],
     [-58.49237905024512, -34.572882797311536],
     [-58.491269849171985, -34.5722736847822],
     [-58.49066682542522, -34.57302517599843],
     [-58.490064726952525, -34.57377546673339],
     [-58.49101435999976, -34.57429652702448],
     [-58.491173513241385, -34.574383815495175]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 663.0,
   'VIVIEND': 459.0,
   'HOGARES': 330.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.03365575909695,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.490064726952525, -34.57377546673339],
     [-58.4889582559141, -34.573168374965014],
     [-58.488276959102095, -34.57279456924114],
     [-58.48746179216033, -34.57342834024921],
     [-58.48835477902181, -34.573919220938535],
     [-58.48772158896026, -34.57470704241771],
     [-58.48882926360233, -34.575314919643375],
     [-58.48946193682691, -34.57452659964535],
     [-58.490064726952525, -34.57377546673339]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_11',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 796.0,
   'VIVIEND': 384.0,
   'HOGARES': 334.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.036217470226973,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48946193682689, -34.57452659964535],
     [-58.490570643424775, -34.57513453128156],
     [-58.49164726514531, -34.57572491738818],
     [-58.49166114280659, -34.57573252735222],
     [-58.492752339026, -34.57633079514062],
     [-58.49335434614417, -34.57557922386099],
     [-58.492263666423966, -34.5749813837964],
     [-58.49117351324139, -34.57438381549517],
     [-58.491014359999745, -34.57429652702448],
     [-58.49006472695251, -34.57377546673338],
     [-58.48946193682689, -34.57452659964535]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_12',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 714.0,
   'VIVIEND': 383.0,
   'HOGARES': 316.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.02537122082247,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49103275408008, -34.576524164611],
     [-58.49164726514531, -34.57572491738818],
     [-58.490570643424775, -34.57513453128156],
     [-58.48946193682689, -34.57452659964535],
     [-58.48882926360231, -34.57531491964336],
     [-58.48993738013446, -34.575922997925076],
     [-58.491028140922346, -34.57652163332737],
     [-58.49103275408008, -34.576524164611]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_13',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 498.0,
   'VIVIEND': 252.0,
   'HOGARES': 202.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.035047678223014,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489572717109475, -34.57637693052494],
     [-58.490648245477544, -34.576995051464436],
     [-58.49172508507856, -34.57761370828285],
     [-58.492119768880286, -34.57712061082884],
     [-58.492752339026, -34.57633079514062],
     [-58.49166114280659, -34.57573252735222],
     [-58.49164726514531, -34.57572491738818],
     [-58.49103275408008, -34.576524164611],
     [-58.491028140922346, -34.57652163332737],
     [-58.48993738013446, -34.575922997925076],
     [-58.48882926360231, -34.57531491964336],
     [-58.48848066349431, -34.57574958113004],
     [-58.489572717109475, -34.57637693052494]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 873.0,
   'VIVIEND': 431.0,
   'HOGARES': 363.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.044261396727741,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.490591101184826, -34.5711283984049],
     [-58.49051310876629, -34.571102288962464],
     [-58.49042831513412, -34.57110491393466],
     [-58.49034328354841, -34.57116028634437],
     [-58.489980955126356, -34.57144107720541],
     [-58.489897292704946, -34.57151990012676],
     [-58.48981124701619, -34.571600836233635],
     [-58.489094498195655, -34.57216304577496],
     [-58.489560785865905, -34.57241879375453],
     [-58.49066682542522, -34.57302517599843],
     [-58.491269849171985, -34.5722736847822],
     [-58.49237905024512, -34.572882797311536],
     [-58.49304971033897, -34.57204761733903],
     [-58.49249315727366, -34.57175570689803],
     [-58.49192468697238, -34.57145759946216],
     [-58.491494505127946, -34.57123199335606],
     [-58.4907916754034, -34.57086334756406],
     [-58.490591101184826, -34.5711283984049]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 908.0,
   'VIVIEND': 399.0,
   'HOGARES': 359.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.044571220294118,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48903472104658, -34.571046207378764],
     [-58.48843117552596, -34.57179867375134],
     [-58.487829406364256, -34.572549023969124],
     [-58.488276959102095, -34.57279456924114],
     [-58.4889582559141, -34.573168374965014],
     [-58.490064726952525, -34.57377546673339],
     [-58.49066682542522, -34.57302517599843],
     [-58.489560785865905, -34.57241879375453],
     [-58.489094498195655, -34.57216304577496],
     [-58.48981124701619, -34.571600836233635],
     [-58.489897292704946, -34.57151990012676],
     [-58.489980955126356, -34.57144107720541],
     [-58.49034328354841, -34.57116028634437],
     [-58.49042831513412, -34.57110491393466],
     [-58.49051310876629, -34.571102288962464],
     [-58.490591101184826, -34.5711283984049],
     [-58.4907916754034, -34.57086334756406],
     [-58.49057028619145, -34.5707472694236],
     [-58.489665828881705, -34.57026182984992],
     [-58.48956311228457, -34.57038734776492],
     [-58.48903472104658, -34.571046207378764]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1143.0,
   'VIVIEND': 616.0,
   'HOGARES': 521.0,
   'HOGARES_': 20.0,
   'AREA_KM': 0.038771451233119,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48856648032306, -34.56967712737396],
     [-58.48841415079921, -34.56959420027438],
     [-58.48746646147281, -34.56907685140338],
     [-58.48728859097196, -34.568982730678044],
     [-58.48718366176336, -34.569117965554156],
     [-58.486675514031944, -34.56975047251872],
     [-58.487946855864244, -34.570448750208286],
     [-58.48734304930267, -34.57120071836339],
     [-58.48843117552596, -34.57179867375134],
     [-58.48903472104658, -34.571046207378764],
     [-58.48956311228457, -34.57038734776492],
     [-58.489665828881705, -34.57026182984992],
     [-58.48951860649007, -34.5701827763196],
     [-58.48876496042187, -34.569785115322944],
     [-58.48856648032306, -34.56967712737396]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1339.0,
   'VIVIEND': 687.0,
   'HOGARES': 618.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.039997341437697,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48843117552596, -34.57179867375134],
     [-58.48734304930267, -34.57120071836339],
     [-58.487946855864244, -34.570448750208286],
     [-58.486675514031944, -34.56975047251872],
     [-58.48607170090741, -34.57050187108376],
     [-58.485972553675275, -34.57062527257546],
     [-58.4854689833335, -34.571251998738184],
     [-58.48559687571818, -34.571322469060405],
     [-58.486740678675126, -34.5719509225629],
     [-58.487681244501616, -34.572467714884745],
     [-58.487829406364256, -34.572549023969124],
     [-58.48843117552596, -34.57179867375134]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1406.0,
   'VIVIEND': 863.0,
   'HOGARES': 647.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.039035594547987,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48436547365409, -34.57064472367075],
     [-58.4835435717627, -34.57127628679577],
     [-58.484866169874685, -34.5720024050388],
     [-58.48536047260736, -34.571387091818146],
     [-58.4854689833335, -34.571251998738184],
     [-58.485972553675275, -34.57062527257546],
     [-58.48607170090741, -34.57050187108376],
     [-58.486675514031944, -34.56975047251872],
     [-58.48718366176336, -34.569117965554156],
     [-58.48728859097196, -34.568982730678044],
     [-58.48684804604735, -34.5687496452581],
     [-58.48612721130136, -34.56929747198366],
     [-58.486011199334854, -34.569385594421156],
     [-58.48535785084789, -34.569882135088896],
     [-58.48518532033776, -34.57001477507531],
     [-58.48506351873842, -34.570108390727576],
     [-58.48436547365409, -34.57064472367075]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 754.0,
   'VIVIEND': 386.0,
   'HOGARES': 338.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.036260395357788,
   'partidas': 6.0},
  'geometry': {'type': 'MultiPolygon',
   'coordinates': [[[[-58.484232365786234, -34.57279147641093],
      [-58.484866169874685, -34.5720024050388],
      [-58.4835435717627, -34.57127628679577],
      [-58.48331936811936, -34.57144858153849],
      [-58.48297848007385, -34.57171014048482],
      [-58.4829782400767, -34.571710369476094],
      [-58.483072500704836, -34.57180259047542],
      [-58.48305219034399, -34.57182126539566],
      [-58.48320345660153, -34.571955675111326],
      [-58.48368209483155, -34.57238690614364],
      [-58.48377014980622, -34.57247838147419],
      [-58.48379391214396, -34.57245718073765],
      [-58.484232365786234, -34.57279147641093]]],
    [[[-58.484232365786234, -34.57279147641093],
      [-58.484181980961466, -34.57285423289724],
      [-58.4842625403448, -34.5729314736045],
      [-58.4843956298722, -34.57301053595105],
      [-58.484584931632234, -34.57317170223651],
      [-58.48485581274553, -34.573397220794156],
      [-58.48522045273778, -34.573700258076265],
      [-58.485289174586015, -34.57375841543059],
      [-58.48555349788642, -34.57396203183217],
      [-58.485660710812496, -34.57405018229619],
      [-58.48573760732918, -34.57411129565568],
      [-58.48583647220097, -34.57418177116778],
      [-58.48593482409821, -34.57424393668979],
      [-58.4860794143249, -34.574334967036414],
      [-58.48619828874184, -34.574410649778606],
      [-58.48660515984498, -34.57409436797285],
      [-58.48746179216033, -34.57342834024921],
      [-58.48630340276602, -34.57279144562749],
      [-58.48613838230626, -34.57270091241377],
      [-58.48550458498252, -34.573490131145775],
      [-58.484232365786234, -34.57279147641093]]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1063.0,
   'VIVIEND': 690.0,
   'HOGARES': 528.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.02872419480145,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.486740678675126, -34.5719509225629],
     [-58.48559687571818, -34.571322469060405],
     [-58.4854689833335, -34.571251998738184],
     [-58.48536047260736, -34.571387091818146],
     [-58.484866169874685, -34.5720024050388],
     [-58.484232365786234, -34.57279147641093],
     [-58.48550458498252, -34.573490131145775],
     [-58.48613838230626, -34.57270091241377],
     [-58.486740678675126, -34.5719509225629]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_16_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 838.0,
   'VIVIEND': 427.0,
   'HOGARES': 362.0,
   'HOGARES_': 23.0,
   'AREA_KM': 0.015733836159021,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.487829406364256, -34.572549023969124],
     [-58.487681244501616, -34.572467714884745],
     [-58.486740678675126, -34.5719509225629],
     [-58.48613838230626, -34.57270091241377],
     [-58.48630340276602, -34.57279144562749],
     [-58.48746179216033, -34.57342834024921],
     [-58.488276959102095, -34.57279456924114],
     [-58.487829406364256, -34.572549023969124]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1010.0,
   'VIVIEND': 421.0,
   'HOGARES': 355.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.068220102036655,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49807867012508, -34.566764616227964],
     [-58.497464684679805, -34.567526638010555],
     [-58.49688634031397, -34.56824442045678],
     [-58.49742799021101, -34.568543709784066],
     [-58.49798573785185, -34.56885193586835],
     [-58.49812377039248, -34.56892823533978],
     [-58.498539657864754, -34.56915839991505],
     [-58.498631552816796, -34.56904506093639],
     [-58.49911459220731, -34.56844786442042],
     [-58.4997074695253, -34.56771471464102],
     [-58.4998076995278, -34.56759087906873],
     [-58.5007373230452, -34.56644261348797],
     [-58.50083712482729, -34.566319833537094],
     [-58.500261690264075, -34.56604204890886],
     [-58.499634489651626, -34.56573920632511],
     [-58.49911202568153, -34.56548935849296],
     [-58.49807867012508, -34.566764616227964]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1052.0,
   'VIVIEND': 426.0,
   'HOGARES': 380.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.066822442743599,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49523663531893, -34.56733267105821],
     [-58.49404438098569, -34.56667367475058],
     [-58.493220277044145, -34.56772812885485],
     [-58.49441116825172, -34.56836192170907],
     [-58.49552842216232, -34.56895649661733],
     [-58.49607722013313, -34.56924860674871],
     [-58.496621253410154, -34.56953811003967],
     [-58.497746543176085, -34.57013695814208],
     [-58.498539657864754, -34.56915839991505],
     [-58.49812377039248, -34.56892823533978],
     [-58.49798573785185, -34.56885193586835],
     [-58.49742799021101, -34.568543709784066],
     [-58.49688634031397, -34.56824442045678],
     [-58.496342480330966, -34.567943791265954],
     [-58.49523663531893, -34.56733267105821]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 917.0,
   'VIVIEND': 389.0,
   'HOGARES': 333.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.066786553882658,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.493220277044145, -34.56772812885485],
     [-58.49308404475455, -34.567902461891904],
     [-58.492820257985976, -34.56824013923313],
     [-58.492419468232654, -34.568753275227934],
     [-58.493167163774665, -34.569152887080605],
     [-58.49359572227896, -34.569379544139586],
     [-58.493746182569474, -34.56945964829665],
     [-58.494152010022184, -34.56967694279898],
     [-58.494295574329485, -34.569753808554744],
     [-58.494708301455546, -34.56997363466827],
     [-58.49515704995128, -34.57021267551127],
     [-58.4952685988327, -34.5702720835138],
     [-58.4958057384393, -34.5705574372226],
     [-58.496924393691245, -34.57115171705177],
     [-58.4976344793937, -34.570275091396795],
     [-58.497746543176085, -34.57013695814208],
     [-58.496621253410154, -34.56953811003967],
     [-58.49607722013313, -34.56924860674871],
     [-58.49552842216232, -34.56895649661733],
     [-58.49441116825172, -34.56836192170907],
     [-58.493220277044145, -34.56772812885485]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 796.0,
   'VIVIEND': 368.0,
   'HOGARES': 306.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.067846933378756,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4920852602598, -34.56712402974679],
     [-58.49101656813515, -34.56649539714573],
     [-58.48975588805245, -34.56575390833562],
     [-58.48868966615757, -34.56529103250488],
     [-58.48856371873469, -34.565432118303555],
     [-58.487767856653335, -34.566321315427295],
     [-58.488975656833816, -34.56677776026467],
     [-58.49022706662021, -34.567520737996986],
     [-58.49129295799678, -34.56815353306521],
     [-58.492419468232654, -34.568753275227934],
     [-58.492820257985976, -34.56824013923313],
     [-58.49308404475455, -34.567902461891904],
     [-58.493220277044145, -34.56772812885485],
     [-58.4920852602598, -34.56712402974679]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1133.0,
   'VIVIEND': 514.0,
   'HOGARES': 437.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.078249246327758,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49129295799678, -34.56815353306521],
     [-58.49022706662021, -34.567520737996986],
     [-58.488975656833816, -34.56677776026467],
     [-58.487767856653335, -34.566321315427295],
     [-58.48765662867865, -34.56644570678461],
     [-58.48691172424325, -34.56727749230282],
     [-58.48680517583923, -34.56740152981776],
     [-58.487485308210665, -34.56775125937575],
     [-58.488026233752656, -34.568029322596054],
     [-58.48817268361041, -34.5681046456523],
     [-58.489320537020674, -34.56869793297364],
     [-58.49043502876821, -34.569273892758645],
     [-58.49056155848612, -34.56933928769498],
     [-58.491551158627225, -34.5698649126237],
     [-58.492419468232654, -34.568753275227934],
     [-58.49129295799678, -34.56815353306521]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1006.0,
   'VIVIEND': 477.0,
   'HOGARES': 414.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.054075285754945,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4958057384393, -34.5705574372226],
     [-58.4952685988327, -34.5702720835138],
     [-58.49515704995128, -34.57021267551127],
     [-58.494708301455546, -34.56997363466827],
     [-58.494295574329485, -34.569753808554744],
     [-58.494152010022184, -34.56967694279898],
     [-58.493746182569474, -34.56945964829665],
     [-58.49359572227896, -34.569379544139586],
     [-58.493167163774665, -34.569152887080605],
     [-58.492419468232654, -34.568753275227934],
     [-58.491551158627225, -34.5698649126237],
     [-58.49228208449937, -34.57025312512448],
     [-58.492395334352125, -34.570313310002746],
     [-58.4927126049754, -34.570481545362135],
     [-58.493272898173515, -34.57077873571623],
     [-58.49383098140109, -34.571074726841566],
     [-58.49427649710239, -34.57131095474897],
     [-58.49443896790843, -34.57139711136627],
     [-58.49493174685799, -34.5716581137532],
     [-58.49502339456647, -34.57154611565291],
     [-58.495722775339516, -34.57066626450659],
     [-58.4958057384393, -34.5705574372226]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 992.0,
   'VIVIEND': 431.0,
   'HOGARES': 373.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.070646499854445,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4927126049754, -34.570481545362135],
     [-58.492395334352125, -34.570313310002746],
     [-58.49228208449937, -34.57025312512448],
     [-58.491494505127946, -34.57123199335606],
     [-58.49192468697238, -34.57145759946216],
     [-58.49249315727366, -34.57175570689803],
     [-58.49304971033897, -34.57204761733903],
     [-58.49349761234571, -34.57228250940477],
     [-58.494152865139924, -34.57262608091844],
     [-58.49525637587538, -34.573204816068866],
     [-58.495378491815806, -34.57306189355267],
     [-58.49603968047658, -34.572244869062935],
     [-58.49680705156541, -34.57129661169099],
     [-58.496924393691245, -34.57115171705177],
     [-58.4958057384393, -34.5705574372226],
     [-58.495722775339516, -34.57066626450659],
     [-58.49502339456647, -34.57154611565291],
     [-58.49493174685799, -34.5716581137532],
     [-58.49443896790843, -34.57139711136627],
     [-58.49427649710239, -34.57131095474897],
     [-58.49383098140109, -34.571074726841566],
     [-58.493272898173515, -34.57077873571623],
     [-58.4927126049754, -34.570481545362135]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_17_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1252.0,
   'VIVIEND': 701.0,
   'HOGARES': 557.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.076469106170654,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49228208449937, -34.57025312512448],
     [-58.491551158627225, -34.5698649126237],
     [-58.49056155848612, -34.56933928769498],
     [-58.49043502876821, -34.569273892758645],
     [-58.489320537020674, -34.56869793297364],
     [-58.48817268361041, -34.5681046456523],
     [-58.488026233752656, -34.568029322596054],
     [-58.487485308210665, -34.56775125937575],
     [-58.48680517583923, -34.56740152981776],
     [-58.4867107116881, -34.56751133924035],
     [-58.486012942076705, -34.56830902470607],
     [-58.486179995945946, -34.56839617742068],
     [-58.486752768101965, -34.56869924059178],
     [-58.48684804604735, -34.5687496452581],
     [-58.48728859097196, -34.568982730678044],
     [-58.48746646147281, -34.56907685140338],
     [-58.48841415079921, -34.56959420027438],
     [-58.48856648032306, -34.56967712737396],
     [-58.48876496042187, -34.569785115322944],
     [-58.48951860649007, -34.5701827763196],
     [-58.489665828881705, -34.57026182984992],
     [-58.49057028619145, -34.5707472694236],
     [-58.4907916754034, -34.57086334756406],
     [-58.491494505127946, -34.57123199335606],
     [-58.49228208449937, -34.57025312512448]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 631.0,
   'VIVIEND': 294.0,
   'HOGARES': 231.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.066422286838531,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.505661988889756, -34.568689402226546],
     [-58.50460761726318, -34.568171097099764],
     [-58.50361124141405, -34.56940765527469],
     [-58.50467319330768, -34.56991385339298],
     [-58.50573728693193, -34.57042102740405],
     [-58.50727912157615, -34.571155910031266],
     [-58.50737929527345, -34.571099252657696],
     [-58.508439434295745, -34.5704455750016],
     [-58.50821633401541, -34.56995747156345],
     [-58.50799932312623, -34.56983772125449],
     [-58.5067157774769, -34.569207346287996],
     [-58.505661988889756, -34.568689402226546]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_10',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 747.0,
   'VIVIEND': 360.0,
   'HOGARES': 284.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.084139733397514,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49954995646977, -34.57616083069105],
     [-58.500091515196324, -34.57574016570062],
     [-58.49898180608169, -34.57515830729815],
     [-58.49789272052944, -34.5745872780636],
     [-58.49712664815294, -34.574185588006344],
     [-58.496360923750935, -34.57378403386387],
     [-58.49574448837318, -34.57454900460797],
     [-58.49564373378172, -34.57467438617126],
     [-58.49504175302848, -34.57542399697397],
     [-58.49644439562742, -34.576193067332156],
     [-58.49655424992404, -34.576250784396734],
     [-58.49668096574169, -34.57631729963884],
     [-58.498245019334256, -34.57717665781056],
     [-58.499056055088914, -34.576544858712126],
     [-58.499225852726305, -34.57641262262571],
     [-58.49954995646977, -34.57616083069105]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_11',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 708.0,
   'VIVIEND': 285.0,
   'HOGARES': 238.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.049890822081745,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.496360923750935, -34.57378403386387],
     [-58.49525637587538, -34.573204816068866],
     [-58.49465576440564, -34.57395435435842],
     [-58.49455645570555, -34.57407832618253],
     [-58.49395557649659, -34.574828494806425],
     [-58.49335434614417, -34.57557922386101],
     [-58.492752339026, -34.576330795140635],
     [-58.49290766587621, -34.576415969548655],
     [-58.49383665272399, -34.57692440689873],
     [-58.4944395912446, -34.57617374561297],
     [-58.49504175302848, -34.57542399697397],
     [-58.49564373378172, -34.57467438617126],
     [-58.49574448837318, -34.57454900460797],
     [-58.496360923750935, -34.57378403386387]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_12',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1163.0,
   'VIVIEND': 541.0,
   'HOGARES': 436.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.096742552300274,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49743414150259, -34.577808240141934],
     [-58.498245019334256, -34.57717665781056],
     [-58.49668096574169, -34.57631729963884],
     [-58.49655424992404, -34.576250784396734],
     [-58.49644439562742, -34.576193067332156],
     [-58.49504175302848, -34.57542399697397],
     [-58.4944395912446, -34.57617374561297],
     [-58.49383665272399, -34.57692440689873],
     [-58.49374244528399, -34.57704175686708],
     [-58.49320587719781, -34.57771662208637],
     [-58.49471192645033, -34.57854294066439],
     [-58.49576102639715, -34.579118586278284],
     [-58.496422804750075, -34.578598255553025],
     [-58.49661729403152, -34.57844622724336],
     [-58.49725923133108, -34.5779444893082],
     [-58.49743414150259, -34.577808240141934]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_13',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 756.0,
   'VIVIEND': 347.0,
   'HOGARES': 306.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.039022723270774,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49320587719781, -34.57771662208637],
     [-58.49374244528399, -34.57704175686708],
     [-58.49383665272399, -34.57692440689873],
     [-58.49290766587621, -34.576415969548655],
     [-58.492752339026, -34.576330795140635],
     [-58.49211976888029, -34.57712061082885],
     [-58.49172508507858, -34.577613708282854],
     [-58.49279783259194, -34.578229868179555],
     [-58.492781040163095, -34.578246173217714],
     [-58.49288161042243, -34.578293684413886],
     [-58.49353776860853, -34.57866247034939],
     [-58.49376736044655, -34.57878875230297],
     [-58.49406916559191, -34.57894522706414],
     [-58.49419758789883, -34.579015758568225],
     [-58.49425200253695, -34.57903743502242],
     [-58.4942960302991, -34.579060593039834],
     [-58.49433443754247, -34.57908086512527],
     [-58.49438885461039, -34.57910873880566],
     [-58.49479002556327, -34.57926828458071],
     [-58.495203377519395, -34.57943796680561],
     [-58.49530743751799, -34.5794753340472],
     [-58.49576102639715, -34.579118586278284],
     [-58.49471192645033, -34.57854294066439],
     [-58.49320587719781, -34.57771662208637]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 924.0,
   'VIVIEND': 355.0,
   'HOGARES': 323.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.067465849690586,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.501397577094345, -34.56659078907356],
     [-58.50127649443634, -34.56653195303953],
     [-58.50083712482729, -34.566319833537094],
     [-58.5007373230452, -34.56644261348797],
     [-58.4998076995278, -34.56759087906873],
     [-58.49994913301314, -34.56765844289967],
     [-58.50039855457975, -34.567874154062594],
     [-58.50091763167991, -34.56812322268195],
     [-58.501071584287786, -34.568197119432604],
     [-58.50171685883293, -34.56850466712426],
     [-58.50234348985632, -34.56880334403919],
     [-58.50249437925911, -34.568875268113395],
     [-58.5030555334442, -34.56914276491871],
     [-58.50361124141405, -34.56940765527469],
     [-58.50460761726318, -34.568171097099764],
     [-58.50447111704791, -34.568104029952515],
     [-58.50405650862526, -34.56790043490947],
     [-58.50364028434346, -34.56769606433013],
     [-58.503500377566006, -34.5676231520537],
     [-58.50335638373126, -34.56754819868528],
     [-58.50273120202789, -34.567241779805656],
     [-58.50211121908242, -34.56693789128804],
     [-58.50195965163704, -34.566864206337236],
     [-58.501397577094345, -34.56659078907356]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 864.0,
   'VIVIEND': 363.0,
   'HOGARES': 318.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.079208838275164,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50727912157615, -34.571155910031266],
     [-58.50573728693193, -34.57042102740405],
     [-58.50467319330768, -34.56991385339298],
     [-58.50361124141405, -34.56940765527469],
     [-58.5030555334442, -34.56914276491871],
     [-58.50249437925911, -34.568875268113395],
     [-58.50234348985632, -34.56880334403919],
     [-58.50171685883293, -34.56850466712426],
     [-58.501071584287786, -34.568197119432604],
     [-58.50091763167991, -34.56812322268195],
     [-58.50018590984129, -34.56904445266775],
     [-58.500241855407275, -34.56907387264151],
     [-58.50097492512221, -34.56942294724209],
     [-58.501757048921355, -34.569795452869684],
     [-58.502730264194064, -34.57025894895658],
     [-58.50287187421837, -34.57032524168226],
     [-58.503002159090734, -34.57038632661928],
     [-58.50393391840963, -34.5708313756985],
     [-58.50499699794443, -34.571339190240245],
     [-58.50607397100583, -34.57185368080202],
     [-58.50618853026312, -34.57178927267995],
     [-58.50627304292271, -34.571737269769564],
     [-58.50652070776699, -34.57158478398405],
     [-58.50703477218692, -34.57129431139809],
     [-58.50727912157615, -34.571155910031266]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 817.0,
   'VIVIEND': 347.0,
   'HOGARES': 308.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.067919222666562,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50393391840963, -34.5708313756985],
     [-58.503002159090734, -34.57038632661928],
     [-58.50287187421837, -34.57032524168226],
     [-58.502730264194064, -34.57025894895658],
     [-58.501757048921355, -34.569795452869684],
     [-58.50097492512221, -34.56942294724209],
     [-58.500241855407275, -34.56907387264151],
     [-58.50018590984129, -34.56904445266775],
     [-58.5000803193404, -34.56917737483855],
     [-58.499620090376276, -34.56975625800914],
     [-58.50037030521521, -34.57017138856676],
     [-58.50096034889661, -34.570497901193974],
     [-58.50112044247136, -34.57058672577861],
     [-58.50218328498838, -34.5711761861332],
     [-58.50320134906781, -34.571740792431164],
     [-58.504218405026165, -34.57230489755685],
     [-58.5047388180166, -34.57259352745308],
     [-58.504944959063025, -34.57247549641708],
     [-58.50588485415535, -34.57195987653415],
     [-58.50607397100583, -34.57185368080202],
     [-58.50499699794443, -34.571339190240245],
     [-58.50393391840963, -34.5708313756985]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 913.0,
   'VIVIEND': 345.0,
   'HOGARES': 301.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.066996359198332,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50037030521521, -34.57017138856676],
     [-58.499620090376276, -34.56975625800914],
     [-58.49952198565862, -34.5698796702001],
     [-58.49884076776129, -34.57071925540945],
     [-58.49960077318835, -34.57112368330932],
     [-58.50036197815487, -34.571528739892095],
     [-58.5014352053619, -34.57209975242427],
     [-58.502469104191256, -34.57264992283605],
     [-58.50264529668868, -34.57274366980711],
     [-58.50359490573962, -34.57325336449247],
     [-58.504526037631884, -34.572715363299245],
     [-58.5047388180166, -34.57259352745308],
     [-58.504218405026165, -34.57230489755685],
     [-58.50320134906781, -34.571740792431164],
     [-58.50218328498838, -34.5711761861332],
     [-58.50112044247136, -34.57058672577861],
     [-58.50096034889661, -34.570497901193974],
     [-58.50037030521521, -34.57017138856676]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 889.0,
   'VIVIEND': 358.0,
   'HOGARES': 312.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.074273432529867,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.496924393691245, -34.57115171705177],
     [-58.49680705156541, -34.57129661169099],
     [-58.49603968047658, -34.572244869062935],
     [-58.49618861533916, -34.57232377338135],
     [-58.497135282353604, -34.572825631711424],
     [-58.49802092287679, -34.57173014761259],
     [-58.498113416830435, -34.57161568211652],
     [-58.49884076776129, -34.57071925540945],
     [-58.49952198565862, -34.5698796702001],
     [-58.499620090376276, -34.56975625800914],
     [-58.5000803193404, -34.56917737483855],
     [-58.50018590984129, -34.56904445266775],
     [-58.50091763167991, -34.56812322268195],
     [-58.50039855457975, -34.567874154062594],
     [-58.49994913301314, -34.56765844289967],
     [-58.4998076995278, -34.56759087906873],
     [-58.4997074695253, -34.56771471464102],
     [-58.49911459220731, -34.56844786442042],
     [-58.498631552816796, -34.56904506093639],
     [-58.498539657864754, -34.56915839991505],
     [-58.497746543176085, -34.57013695814208],
     [-58.4976344793937, -34.570275091396795],
     [-58.496924393691245, -34.57115171705177]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 894.0,
   'VIVIEND': 373.0,
   'HOGARES': 336.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.065845471082509,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5014352053619, -34.57209975242427],
     [-58.50036197815487, -34.571528739892095],
     [-58.49960077318835, -34.57112368330932],
     [-58.49884076776129, -34.57071925540945],
     [-58.498113416830435, -34.57161568211652],
     [-58.49802092287679, -34.57173014761259],
     [-58.49864655664531, -34.5720599005313],
     [-58.49878578532465, -34.57213232555019],
     [-58.49955474084826, -34.572532595987646],
     [-58.49970614847022, -34.57261142483885],
     [-58.5006320593097, -34.573097628226215],
     [-58.501669623602, -34.573642381545746],
     [-58.50234578489676, -34.573997381387784],
     [-58.50239361757938, -34.57396609768165],
     [-58.50334714090701, -34.57339647797265],
     [-58.50359490573962, -34.57325336449247],
     [-58.50264529668868, -34.57274366980711],
     [-58.502469104191256, -34.57264992283605],
     [-58.5014352053619, -34.57209975242427]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_8',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 980.0,
   'VIVIEND': 382.0,
   'HOGARES': 328.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.066508308200061,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5006320593097, -34.573097628226215],
     [-58.49970614847022, -34.57261142483885],
     [-58.49955474084826, -34.572532595987646],
     [-58.49878578532465, -34.57213232555019],
     [-58.49864655664531, -34.5720599005313],
     [-58.49802092287679, -34.57173014761259],
     [-58.497135282353604, -34.572825631711424],
     [-58.497764413058036, -34.57315919098887],
     [-58.49789844893283, -34.57323042129345],
     [-58.49866894671323, -34.573639781460926],
     [-58.49883057504808, -34.573725580326375],
     [-58.499744825910156, -34.574204328881805],
     [-58.50113461626419, -34.57493201063448],
     [-58.50168254344085, -34.57450922378645],
     [-58.50234578489676, -34.573997381387784],
     [-58.501669623602, -34.573642381545746],
     [-58.5006320593097, -34.573097628226215]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_18_9',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 794.0,
   'VIVIEND': 291.0,
   'HOGARES': 290.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.068704180660099,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.497135282353604, -34.572825631711424],
     [-58.49618861533916, -34.57232377338135],
     [-58.49603968047658, -34.572244869062935],
     [-58.495378491815806, -34.57306189355267],
     [-58.49525637587538, -34.573204816068866],
     [-58.496360923750935, -34.57378403386387],
     [-58.49712664815294, -34.574185588006344],
     [-58.49789272052944, -34.5745872780636],
     [-58.49898180608169, -34.57515830729815],
     [-58.500091515196324, -34.57574016570062],
     [-58.500727795059674, -34.57524594638973],
     [-58.50087477875251, -34.57513258865958],
     [-58.50113461626419, -34.57493201063448],
     [-58.499744825910156, -34.574204328881805],
     [-58.49883057504808, -34.573725580326375],
     [-58.49866894671323, -34.573639781460926],
     [-58.49789844893283, -34.57323042129345],
     [-58.497764413058036, -34.57315919098887],
     [-58.497135282353604, -34.572825631711424]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_1',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 913.0,
   'VIVIEND': 404.0,
   'HOGARES': 352.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.105829125223007,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.508932589796906, -34.57387823122884],
     [-58.50895517691315, -34.5739244206742],
     [-58.5089871391419, -34.57398849420126],
     [-58.5090806413939, -34.57417916631089],
     [-58.50910348326648, -34.57422387673026],
     [-58.509132292397396, -34.574282176664745],
     [-58.509153941527806, -34.57432533820445],
     [-58.50924650601324, -34.57451241892038],
     [-58.50936668693579, -34.57475512378692],
     [-58.50938885793037, -34.57481758119596],
     [-58.50939519127772, -34.57487673474278],
     [-58.509398887768846, -34.57494025557142],
     [-58.50949517483293, -34.574779229950245],
     [-58.50960386446373, -34.57487278142798],
     [-58.51023262680247, -34.57429499281081],
     [-58.510240655858226, -34.57431229616423],
     [-58.5107960611202, -34.57385894507175],
     [-58.51106444586829, -34.57363987259356],
     [-58.50925813754057, -34.56978865515244],
     [-58.50902647664918, -34.570048286894135],
     [-58.508920890787834, -34.570116764618746],
     [-58.508764623089526, -34.57025472734021],
     [-58.508620432089025, -34.57036410424945],
     [-58.50856689301976, -34.570391990918424],
     [-58.508439434295745, -34.5704455750016],
     [-58.50737929527345, -34.571099252657696],
     [-58.50727912157615, -34.571155910031266],
     [-58.50703477218692, -34.57129431139809],
     [-58.50652070776699, -34.57158478398405],
     [-58.50627304292271, -34.571737269769564],
     [-58.50860251465583, -34.57311165200874],
     [-58.5087596129644, -34.57345737364723],
     [-58.508888008682725, -34.57378057031614],
     [-58.50890991600925, -34.57382922486035],
     [-58.508932589796906, -34.57387823122884]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_10',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1080.0,
   'VIVIEND': 392.0,
   'HOGARES': 360.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.078930394164175,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50395422050619, -34.58021934997224],
     [-58.50509006081733, -34.58091953581976],
     [-58.50547401776615, -34.58049495818348],
     [-58.50628216985447, -34.57960155874596],
     [-58.50526600089327, -34.57897493495598],
     [-58.5051482109667, -34.5789020169964],
     [-58.505708218707326, -34.57828406398403],
     [-58.505803353502955, -34.57817874694071],
     [-58.50480262148307, -34.57756281809433],
     [-58.504664478933464, -34.57747758251356],
     [-58.50353567240701, -34.57678112239509],
     [-58.5028835846724, -34.57750106952718],
     [-58.503886349671845, -34.57812602767188],
     [-58.50401086437263, -34.57820042348198],
     [-58.50320261653956, -34.57909416024144],
     [-58.50254412602754, -34.579822346992735],
     [-58.503511142143786, -34.58041964311837],
     [-58.50367884258901, -34.5805232506295],
     [-58.50395422050619, -34.58021934997224]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_11',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1082.0,
   'VIVIEND': 370.0,
   'HOGARES': 372.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.107272776866138,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.508062343024726, -34.579580628080684],
     [-58.506934499408366, -34.578880325996344],
     [-58.50628216985447, -34.57960155874596],
     [-58.50547401776615, -34.58049495818348],
     [-58.50509006081733, -34.58091953581976],
     [-58.50614036725193, -34.58100078758855],
     [-58.506308019931396, -34.58100446025905],
     [-58.50660620882905, -34.58118660989429],
     [-58.506466223802384, -34.58133736688915],
     [-58.5063645093212, -34.58145270552479],
     [-58.506297394317, -34.58152721917859],
     [-58.50727022637913, -34.581607432507205],
     [-58.50816480888414, -34.58168323056075],
     [-58.50885954502507, -34.5817399425568],
     [-58.509863889822526, -34.58182688395936],
     [-58.51013330157764, -34.58184431505248],
     [-58.511877413191165, -34.58195693648145],
     [-58.51189353310855, -34.58156974052648],
     [-58.51121899292389, -34.58154240445315],
     [-58.51042686431878, -34.581510321878746],
     [-58.510693371057876, -34.58121556462396],
     [-58.511352907645104, -34.58048620690168],
     [-58.51120904697376, -34.5803976711389],
     [-58.510003830349, -34.579653202159385],
     [-58.509346925697365, -34.58037839668935],
     [-58.50921039179316, -34.580293517800726],
     [-58.508062343024726, -34.579580628080684]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_12',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 833.0,
   'VIVIEND': 392.0,
   'HOGARES': 333.0,
   'HOGARES_': 35.0,
   'AREA_KM': 0.10789464492581,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49986223873975, -34.58084259564394],
     [-58.49986205877715, -34.58084280024364],
     [-58.499862345523056, -34.58084286715024],
     [-58.4999632192907, -34.580861175356375],
     [-58.49980754229358, -34.58103337072537],
     [-58.50056112752, -34.581144760855416],
     [-58.50111801049893, -34.58140121080398],
     [-58.501224812896766, -34.58128145684815],
     [-58.50161148357668, -34.58151852120574],
     [-58.50182730046591, -34.581278448240994],
     [-58.50296773664538, -34.58138492328245],
     [-58.50302371300594, -34.581364880608305],
     [-58.50306002886572, -34.58136612011679],
     [-58.50310693788754, -34.581369859132074],
     [-58.5031856233716, -34.581374839104946],
     [-58.50322647925298, -34.58137732856993],
     [-58.503253725424, -34.581397343713135],
     [-58.50358358468126, -34.581431396238386],
     [-58.503710975975565, -34.58128557644135],
     [-58.5045797491794, -34.58135429665453],
     [-58.50459847185462, -34.58133569837209],
     [-58.5047012464251, -34.581343620925736],
     [-58.50465791068608, -34.58139314909356],
     [-58.50513767386339, -34.581434884626994],
     [-58.50503520015233, -34.58136956231455],
     [-58.50522550785841, -34.5813842851319],
     [-58.50592092171895, -34.58144298548719],
     [-58.50622924875431, -34.58147153835724],
     [-58.5063645093212, -34.58145270552479],
     [-58.506466223802384, -34.58133736688915],
     [-58.50660620882905, -34.58118660989429],
     [-58.506308019931396, -34.58100446025905],
     [-58.50614036725193, -34.58100078758855],
     [-58.50509006081733, -34.58091953581976],
     [-58.50395422050619, -34.58021934997224],
     [-58.50367884258901, -34.5805232506295],
     [-58.503511142143786, -34.58041964311837],
     [-58.50254412602754, -34.579822346992735],
     [-58.50141360170371, -34.57912396664325],
     [-58.50128440255848, -34.5790441470485],
     [-58.500279943922045, -34.578420928733586],
     [-58.49962305046486, -34.579148042965834],
     [-58.498960443645544, -34.57988142298782],
     [-58.498487693069016, -34.58040474030049],
     [-58.498486623084915, -34.5804044834374],
     [-58.49834734704103, -34.58056988967287],
     [-58.498371884645806, -34.580576255939164],
     [-58.49843660160261, -34.5805925753081],
     [-58.499098227326044, -34.58071019865785],
     [-58.49975900242946, -34.58082549469406],
     [-58.49986223873975, -34.58084259564394]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_13',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 713.0,
   'VIVIEND': 322.0,
   'HOGARES': 286.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.065679131874174,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49962305046486, -34.579148042965834],
     [-58.49848421405454, -34.57844576460261],
     [-58.49743414150259, -34.577808240141934],
     [-58.49725923133108, -34.5779444893082],
     [-58.49661729403152, -34.57844622724336],
     [-58.496422804750075, -34.578598255553025],
     [-58.49576102639715, -34.579118586278284],
     [-58.49530743751799, -34.5794753340472],
     [-58.495173461361574, -34.57957776585976],
     [-58.49526951993495, -34.579620064921926],
     [-58.49587310259121, -34.579831314375866],
     [-58.49618715413918, -34.57993277961788],
     [-58.49659385427829, -34.580061331487755],
     [-58.496832885331166, -34.580138026725976],
     [-58.49680854736809, -34.58017056928639],
     [-58.49690383298799, -34.5801929373624],
     [-58.496990348851476, -34.580215448675496],
     [-58.49765301499116, -34.58038970024129],
     [-58.4979180137248, -34.5804584984546],
     [-58.49834734704103, -34.58056988967287],
     [-58.498486623084915, -34.5804044834374],
     [-58.498487693069016, -34.58040474030049],
     [-58.498960443645544, -34.57988142298782],
     [-58.49962305046486, -34.579148042965834]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_2',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 593.0,
   'VIVIEND': 233.0,
   'HOGARES': 225.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.040233304396987,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.507482354493675, -34.57436040015208],
     [-58.50687431069923, -34.57503140818251],
     [-58.50677722438303, -34.57514003673518],
     [-58.50793378226223, -34.57581976634934],
     [-58.508292676730676, -34.57603069283224],
     [-58.50842613444463, -34.5761096583671],
     [-58.50906869951023, -34.575365318476955],
     [-58.50914884912833, -34.57527239905343],
     [-58.50922559323651, -34.57517990341667],
     [-58.50929859337358, -34.575091564162136],
     [-58.50933449630983, -34.5750454228806],
     [-58.50936750082093, -34.5749927332856],
     [-58.509398887768846, -34.57494025557142],
     [-58.50939519127772, -34.57487673474278],
     [-58.50938885793037, -34.57481758119596],
     [-58.50936668693579, -34.57475512378692],
     [-58.50924650601324, -34.57451241892038],
     [-58.509153941527806, -34.57432533820445],
     [-58.509132292397396, -34.574282176664745],
     [-58.50910348326648, -34.57422387673026],
     [-58.5090806413939, -34.57417916631089],
     [-58.5089871391419, -34.57398849420126],
     [-58.50895517691315, -34.5739244206742],
     [-58.508932589796906, -34.57387823122884],
     [-58.50890991600925, -34.57382922486035],
     [-58.508888008682725, -34.57378057031614],
     [-58.5087596129644, -34.57345737364723],
     [-58.50860251465583, -34.57311165200874],
     [-58.507482354493675, -34.57436040015208]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_3',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 764.0,
   'VIVIEND': 278.0,
   'HOGARES': 283.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.104601738638925,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51023262680247, -34.57429499281081],
     [-58.50960386446373, -34.57487278142798],
     [-58.50949517483293, -34.574779229950245],
     [-58.509398887768846, -34.57494025557142],
     [-58.50936750082093, -34.5749927332856],
     [-58.50933449630983, -34.5750454228806],
     [-58.50929859337358, -34.575091564162136],
     [-58.50922559323651, -34.57517990341667],
     [-58.50914884912833, -34.57527239905343],
     [-58.50906869951023, -34.575365318476955],
     [-58.50842613444463, -34.5761096583671],
     [-58.508487370118054, -34.576145974071004],
     [-58.50908388804818, -34.57649906483032],
     [-58.50963850777441, -34.57682737961117],
     [-58.51010438491821, -34.577103190235185],
     [-58.51023171452772, -34.57717976175294],
     [-58.51141440062439, -34.577891068214704],
     [-58.51153449317571, -34.57796355667389],
     [-58.51211426191755, -34.57831325886723],
     [-58.51218188916077, -34.57835407723406],
     [-58.51218325279719, -34.57835701286899],
     [-58.51281424167378, -34.57815128300631],
     [-58.51313202453194, -34.578047670329404],
     [-58.51106444586829, -34.57363987259356],
     [-58.5107960611202, -34.57385894507175],
     [-58.510240655858226, -34.57431229616423],
     [-58.51023262680247, -34.57429499281081]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_4',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1082.0,
   'VIVIEND': 418.0,
   'HOGARES': 367.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.124612014837822,
   'partidas': 1.0},
  'geometry': {'type': 'MultiPolygon',
   'coordinates': [[[[-58.511878078072584, -34.58195730211666],
      [-58.51187683630814, -34.581955250508166],
      [-58.511877413191165, -34.58195693648145],
      [-58.511878078072584, -34.58195730211666]]],
    [[[-58.511352907645104, -34.58048620690168],
      [-58.510693371057876, -34.58121556462396],
      [-58.51042686431878, -34.581510321878746],
      [-58.51121899292389, -34.58154240445315],
      [-58.51189353310855, -34.58156974052648],
      [-58.51187746659282, -34.58195565379429],
      [-58.511878078072584, -34.58195730211666],
      [-58.51196001286815, -34.582055770297686],
      [-58.51213756094991, -34.582091484142694],
      [-58.51310905206069, -34.582080637314405],
      [-58.513150311538496, -34.582038460554514],
      [-58.51409526452839, -34.582006993761944],
      [-58.514368170363745, -34.58176252656889],
      [-58.51442741450824, -34.581757971726375],
      [-58.514502632622985, -34.581750561165585],
      [-58.51450360989429, -34.5817526677116],
      [-58.51485511537117, -34.58172069520468],
      [-58.51401955608226, -34.579939612731735],
      [-58.51399637590245, -34.579890200948775],
      [-58.51313202453194, -34.578047670329404],
      [-58.51281424167378, -34.57815128300631],
      [-58.51218325279719, -34.57835701286899],
      [-58.51218188916077, -34.57835407723406],
      [-58.51211426191755, -34.57831325886723],
      [-58.51153449317571, -34.57796355667389],
      [-58.51070394890741, -34.57888045100903],
      [-58.510003830349, -34.579653202159385],
      [-58.51120904697376, -34.5803976711389],
      [-58.511352907645104, -34.58048620690168]]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_5',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1089.0,
   'VIVIEND': 459.0,
   'HOGARES': 406.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.100530164669156,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.508062343024726, -34.579580628080684],
     [-58.50921039179316, -34.580293517800726],
     [-58.509346925697365, -34.58037839668935],
     [-58.510003830349, -34.579653202159385],
     [-58.51070394890741, -34.57888045100903],
     [-58.51153449317571, -34.57796355667389],
     [-58.51141440062439, -34.577891068214704],
     [-58.51023171452772, -34.57717976175294],
     [-58.51010438491821, -34.577103190235185],
     [-58.50963850777441, -34.57682737961117],
     [-58.50908388804818, -34.57649906483032],
     [-58.508487370118054, -34.576145974071004],
     [-58.507677257106, -34.5770866436529],
     [-58.508249505411484, -34.57742580347339],
     [-58.50769386406845, -34.57804299195241],
     [-58.507586903444526, -34.578160216431485],
     [-58.50745969061072, -34.57829977256681],
     [-58.506934499408366, -34.578880325996344],
     [-58.508062343024726, -34.579580628080684]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_6',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1078.0,
   'VIVIEND': 399.0,
   'HOGARES': 356.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.089469416439872,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50842613444463, -34.5761096583671],
     [-58.508292676730676, -34.57603069283224],
     [-58.50793378226223, -34.57581976634934],
     [-58.50677722438303, -34.57514003673518],
     [-58.50668745544985, -34.57524042299098],
     [-58.505944530014304, -34.576061970408844],
     [-58.5053158698151, -34.57675727399474],
     [-58.504664478933464, -34.57747758251356],
     [-58.50480262148307, -34.57756281809433],
     [-58.505803353502955, -34.57817874694071],
     [-58.505708218707326, -34.57828406398403],
     [-58.5051482109667, -34.5789020169964],
     [-58.50526600089327, -34.57897493495598],
     [-58.50628216985447, -34.57960155874596],
     [-58.506934499408366, -34.578880325996344],
     [-58.50745969061072, -34.57829977256681],
     [-58.507586903444526, -34.578160216431485],
     [-58.50769386406845, -34.57804299195241],
     [-58.508249505411484, -34.57742580347339],
     [-58.507677257106, -34.5770866436529],
     [-58.508487370118054, -34.576145974071004],
     [-58.50842613444463, -34.5761096583671]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_7',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 998.0,
   'VIVIEND': 386.0,
   'HOGARES': 346.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.215900622626305,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5053158698151, -34.57675727399474],
     [-58.505944530014304, -34.576061970408844],
     [-58.50668745544985, -34.57524042299098],
     [-58.50677722438303, -34.57514003673518],
     [-58.50687431069923, -34.57503140818251],
     [-58.507482354493675, -34.57436040015208],
     [-58.50860251465583, -34.57311165200874],
     [-58.50627304292271, -34.571737269769564],
     [-58.50618853026312, -34.57178927267995],
     [-58.50607397100583, -34.57185368080202],
     [-58.50588485415535, -34.57195987653415],
     [-58.504944959063025, -34.57247549641708],
     [-58.5047388180166, -34.57259352745308],
     [-58.504526037631884, -34.572715363299245],
     [-58.50359490573962, -34.57325336449247],
     [-58.50334714090701, -34.57339647797265],
     [-58.50239361757938, -34.57396609768165],
     [-58.50234578489676, -34.573997381387784],
     [-58.50168254344085, -34.57450922378645],
     [-58.50113461626419, -34.57493201063448],
     [-58.50087477875251, -34.57513258865958],
     [-58.501268745580056, -34.575377539533704],
     [-58.50226781020342, -34.57599877991767],
     [-58.5023993901654, -34.57608000621377],
     [-58.50353567240701, -34.57678112239509],
     [-58.504664478933464, -34.57747758251356],
     [-58.5053158698151, -34.57675727399474]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_8',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 963.0,
   'VIVIEND': 360.0,
   'HOGARES': 351.0,
   'HOGARES_': 42.0,
   'AREA_KM': 0.090392127205253,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.498245019334256, -34.57717665781056],
     [-58.49743414150259, -34.577808240141934],
     [-58.49848421405454, -34.57844576460261],
     [-58.49962305046486, -34.579148042965834],
     [-58.500279943922045, -34.578420928733586],
     [-58.50093878323477, -34.57769169756089],
     [-58.501644329314004, -34.57691068639739],
     [-58.50174644593147, -34.576798327887815],
     [-58.5023993901654, -34.57608000621377],
     [-58.50226781020342, -34.57599877991767],
     [-58.501268745580056, -34.575377539533704],
     [-58.50087477875251, -34.57513258865958],
     [-58.500727795059674, -34.57524594638973],
     [-58.500091515196324, -34.57574016570062],
     [-58.49954995646977, -34.57616083069105],
     [-58.499225852726305, -34.57641262262571],
     [-58.499056055088914, -34.576544858712126],
     [-58.498245019334256, -34.57717665781056]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_19_9',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 789.0,
   'VIVIEND': 373.0,
   'HOGARES': 316.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.071317750613876,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50141360170371, -34.57912396664325],
     [-58.50254412602754, -34.579822346992735],
     [-58.50320261653956, -34.57909416024144],
     [-58.50401086437263, -34.57820042348198],
     [-58.503886349671845, -34.57812602767188],
     [-58.5028835846724, -34.57750106952718],
     [-58.50353567240701, -34.57678112239509],
     [-58.5023993901654, -34.57608000621377],
     [-58.50174644593147, -34.576798327887815],
     [-58.501644329314004, -34.57691068639739],
     [-58.50093878323477, -34.57769169756089],
     [-58.500279943922045, -34.578420928733586],
     [-58.50128440255848, -34.5790441470485],
     [-58.50141360170371, -34.57912396664325]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1066.0,
   'VIVIEND': 388.0,
   'HOGARES': 371.0,
   'HOGARES_': 16.0,
   'AREA_KM': 0.131301611220658,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49235679306197, -34.55479350695134],
     [-58.49142772820982, -34.55430632448691],
     [-58.49125158766065, -34.55421396949325],
     [-58.49051067637585, -34.553821033623805],
     [-58.48958001336907, -34.55332459896297],
     [-58.48942828386801, -34.55324658627054],
     [-58.489303786693064, -34.553178222633534],
     [-58.488699915862384, -34.55281605921198],
     [-58.488551445314165, -34.55272707475716],
     [-58.488300186454005, -34.552463953069704],
     [-58.48827299609382, -34.552325747251075],
     [-58.48827290689311, -34.55232529385221],
     [-58.48822582355801, -34.55227868298957],
     [-58.48822591766158, -34.55227866066954],
     [-58.488200170704076, -34.55225332334926],
     [-58.488178414926075, -34.55223191369204],
     [-58.48805168867999, -34.55217117746923],
     [-58.48795238357051, -34.55214595161485],
     [-58.48786171375778, -34.55215605393014],
     [-58.48720942751725, -34.55305580922037],
     [-58.48666082548544, -34.55385875202849],
     [-58.48611306299415, -34.554657748361926],
     [-58.485679235249435, -34.55535031007235],
     [-58.48580912706381, -34.55535113064426],
     [-58.485959532597136, -34.55535208801971],
     [-58.48606363332238, -34.55535277238349],
     [-58.4861692661714, -34.55535338594001],
     [-58.486592905417886, -34.55536034617171],
     [-58.48693321283737, -34.55536598344561],
     [-58.487254198182974, -34.555371271538355],
     [-58.487759557377224, -34.55539659192514],
     [-58.487925201531624, -34.55540486784689],
     [-58.488123276592326, -34.55541482697125],
     [-58.48936663055943, -34.555477027829454],
     [-58.48992340383869, -34.555504933706814],
     [-58.49057832154008, -34.55553774435453],
     [-58.49153482234452, -34.55558562179637],
     [-58.49179512181932, -34.55559957441986],
     [-58.492308570910055, -34.5556271980399],
     [-58.492308778422135, -34.55562720917811],
     [-58.49300605183272, -34.555664633318486],
     [-58.49310737542638, -34.55551756281044],
     [-58.49327727008277, -34.555276177318795],
     [-58.49235679306197, -34.55479350695134]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 738.0,
   'VIVIEND': 389.0,
   'HOGARES': 316.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.043116957125114,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.487862001307114, -34.552155657283194],
     [-58.48705503500968, -34.551918632735884],
     [-58.48623525297512, -34.55149329140771],
     [-58.48564434132937, -34.55226743457033],
     [-58.48506524576993, -34.553025938477546],
     [-58.48590870355994, -34.553466142523696],
     [-58.48533267355233, -34.55425126724708],
     [-58.48611306299415, -34.554657748361926],
     [-58.48666082548544, -34.55385875202849],
     [-58.48720942751725, -34.55305580922037],
     [-58.48786171375778, -34.55215605393014],
     [-58.487862001307114, -34.552155657283194]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 850.0,
   'VIVIEND': 480.0,
   'HOGARES': 394.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.027684186111271,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48447210015648, -34.55380296357007],
     [-58.48388592088903, -34.55457082935318],
     [-58.48475978105642, -34.555032374418076],
     [-58.485356548389106, -34.55534755341892],
     [-58.485679235249435, -34.55535031007235],
     [-58.48611306299415, -34.554657748361926],
     [-58.48533267355233, -34.55425126724708],
     [-58.48590870355994, -34.553466142523696],
     [-58.48506524576993, -34.553025938477546],
     [-58.48447210015648, -34.55380296357007]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1032.0,
   'VIVIEND': 457.0,
   'HOGARES': 379.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.100808004429042,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489889688878584, -34.556527568084924],
     [-58.49083986828359, -34.55698172835663],
     [-58.49178665260426, -34.55743426225417],
     [-58.4921827737544, -34.55685950753249],
     [-58.49232612806428, -34.556651369945506],
     [-58.4925707220971, -34.55629637343138],
     [-58.49284270828542, -34.55590179136063],
     [-58.49300605183272, -34.555664633318486],
     [-58.492308778422135, -34.55562720917811],
     [-58.492308570910055, -34.5556271980399],
     [-58.49179512181932, -34.55559957441986],
     [-58.49153482234452, -34.55558562179637],
     [-58.49057832154008, -34.55553774435453],
     [-58.48992340383869, -34.555504933706814],
     [-58.48936663055943, -34.555477027829454],
     [-58.488123276592326, -34.55541482697125],
     [-58.487925201531624, -34.55540486784689],
     [-58.487759557377224, -34.55539659192514],
     [-58.487254198182974, -34.555371271538355],
     [-58.48693321283737, -34.55536598344561],
     [-58.486592905417886, -34.55536034617171],
     [-58.4861692661714, -34.55535338594001],
     [-58.48606363332238, -34.55535277238349],
     [-58.48587474439784, -34.55562415207137],
     [-58.48534363659558, -34.556387084477265],
     [-58.48600340542723, -34.55670422041439],
     [-58.486580090038565, -34.5569813682232],
     [-58.4867844928539, -34.55707893571704],
     [-58.48691951304018, -34.55714334695367],
     [-58.48790109732168, -34.557611608614636],
     [-58.488341744012786, -34.55697115158718],
     [-58.48842818766636, -34.55684472234428],
     [-58.4889516937543, -34.55607924295437],
     [-58.489889688878584, -34.556527568084924]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1020.0,
   'VIVIEND': 442.0,
   'HOGARES': 401.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.05857516644752,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49083986828359, -34.55698172835663],
     [-58.489889688878584, -34.556527568084924],
     [-58.4889516937543, -34.55607924295437],
     [-58.48842818766636, -34.55684472234428],
     [-58.488341744012786, -34.55697115158718],
     [-58.48790109732168, -34.557611608614636],
     [-58.48882658900934, -34.55805318367559],
     [-58.48977814185868, -34.558507070103495],
     [-58.49072740639864, -34.55895996366835],
     [-58.49125694941718, -34.5581977127792],
     [-58.4917172287709, -34.55753505548921],
     [-58.49178665260426, -34.55743426225417],
     [-58.49083986828359, -34.55698172835663]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 968.0,
   'VIVIEND': 399.0,
   'HOGARES': 344.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.071797446133554,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48751959082051, -34.55992849439581],
     [-58.4884716691179, -34.56038379923493],
     [-58.48942248071611, -34.56083846307445],
     [-58.49017802936283, -34.559750808758416],
     [-58.49072740639864, -34.55895996366835],
     [-58.48977814185868, -34.558507070103495],
     [-58.48882658900934, -34.55805318367559],
     [-58.48790109732168, -34.557611608614636],
     [-58.487430068390225, -34.55829615554989],
     [-58.48735680971185, -34.558402440139],
     [-58.48698208986301, -34.55894583614799],
     [-58.48690278885884, -34.55906085422653],
     [-58.48661068625708, -34.55949380786709],
     [-58.48751959082051, -34.55992849439581]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 850.0,
   'VIVIEND': 387.0,
   'HOGARES': 319.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.104431995085418,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48661068625708, -34.55949380786709],
     [-58.485620403097975, -34.55902018539199],
     [-58.485399596122114, -34.55933868380007],
     [-58.48478959254421, -34.5602602931376],
     [-58.484700841743624, -34.560387635662146],
     [-58.48565478247546, -34.560842257861445],
     [-58.48578844568521, -34.560905966323624],
     [-58.48657425182323, -34.561275470439796],
     [-58.48671966502531, -34.561343823559],
     [-58.48753076819143, -34.561735288776816],
     [-58.48769184890206, -34.56181307435154],
     [-58.48848610062571, -34.56218636726555],
     [-58.48867647008432, -34.562275835716605],
     [-58.489442977743366, -34.56264398732878],
     [-58.489800223883975, -34.56281560206368],
     [-58.48991780208504, -34.56287198546476],
     [-58.490390841025985, -34.56309899621491],
     [-58.491233609987326, -34.56189004595042],
     [-58.49132966887414, -34.56175002068916],
     [-58.49085399604633, -34.56152273243669],
     [-58.49038394492172, -34.56129804673265],
     [-58.49024525435119, -34.56123173875567],
     [-58.489586115355046, -34.56091673856984],
     [-58.48942248071611, -34.56083846307445],
     [-58.4884716691179, -34.56038379923493],
     [-58.48751959082051, -34.55992849439581],
     [-58.48661068625708, -34.55949380786709]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_2_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1003.0,
   'VIVIEND': 381.0,
   'HOGARES': 345.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.111521387860801,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48698208986301, -34.55894583614799],
     [-58.48735680971185, -34.558402440139],
     [-58.487430068390225, -34.55829615554989],
     [-58.48790109732168, -34.557611608614636],
     [-58.48691951304018, -34.55714334695367],
     [-58.4867844928539, -34.55707893571704],
     [-58.486580090038565, -34.5569813682232],
     [-58.48600340542723, -34.55670422041439],
     [-58.48534363659558, -34.556387084477265],
     [-58.48587474439784, -34.55562415207137],
     [-58.48606363332238, -34.55535277238349],
     [-58.485959532597136, -34.55535208801971],
     [-58.48580912706381, -34.55535113064426],
     [-58.485679235249435, -34.55535031007235],
     [-58.48502856759841, -34.556238547875886],
     [-58.48448468744669, -34.557029789248304],
     [-58.48374764829524, -34.55812726499598],
     [-58.4828076329412, -34.55947977485711],
     [-58.48290494004738, -34.55952644987609],
     [-58.48295618329801, -34.55955107989055],
     [-58.48302021040084, -34.559581854399305],
     [-58.483100576220615, -34.55962043332506],
     [-58.483749975628115, -34.55993216035532],
     [-58.4844177689648, -34.56025275406122],
     [-58.484565732916955, -34.560323292446824],
     [-58.484700841743624, -34.560387635662146],
     [-58.48478959254421, -34.5602602931376],
     [-58.485399596122114, -34.55933868380007],
     [-58.485620403097975, -34.55902018539199],
     [-58.48661068625708, -34.55949380786709],
     [-58.48690278885884, -34.55906085422653],
     [-58.48698208986301, -34.55894583614799]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_1',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 851.0,
   'VIVIEND': 401.0,
   'HOGARES': 317.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.066240220220208,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50590275466594, -34.58418029001416],
     [-58.506021298320164, -34.584049189549845],
     [-58.506562952778175, -34.583451380813024],
     [-58.505429532724555, -34.58274691229116],
     [-58.50527877509502, -34.582653583174306],
     [-58.50472145947744, -34.58327125116221],
     [-58.50461882824989, -34.583383964337536],
     [-58.50391172054678, -34.584160626132125],
     [-58.50325353437369, -34.584883604661684],
     [-58.503143070233754, -34.58500617848209],
     [-58.503796108540854, -34.585410966771484],
     [-58.50443296960455, -34.58580561606483],
     [-58.50455715692323, -34.585882546582134],
     [-58.5051125953294, -34.58622609262965],
     [-58.50562681221199, -34.58654415727694],
     [-58.50578166551987, -34.58663945631724],
     [-58.50654706863191, -34.585794311289796],
     [-58.506403289231535, -34.58570612203059],
     [-58.50587748991752, -34.58537975471738],
     [-58.505198973819766, -34.584958577729225],
     [-58.50590275466594, -34.58418029001416]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_2',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1286.0,
   'VIVIEND': 697.0,
   'HOGARES': 559.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.071491356944054,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.5051125953294, -34.58622609262965],
     [-58.50455715692323, -34.585882546582134],
     [-58.50443296960455, -34.58580561606483],
     [-58.503796108540854, -34.585410966771484],
     [-58.503143070233754, -34.58500617848209],
     [-58.50237798222988, -34.58585503463227],
     [-58.501587006137896, -34.58673255654524],
     [-58.50224575116013, -34.587128055274974],
     [-58.50288814857002, -34.58751376692099],
     [-58.503575781019805, -34.587926643535056],
     [-58.504246980875536, -34.588329592109254],
     [-58.50437677015287, -34.58819250349205],
     [-58.50500773698756, -34.58749495166181],
     [-58.505681670145094, -34.586749986261594],
     [-58.50578166551987, -34.58663945631724],
     [-58.50562681221199, -34.58654415727694],
     [-58.5051125953294, -34.58622609262965]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_3',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1026.0,
   'VIVIEND': 486.0,
   'HOGARES': 411.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.076526200810872,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50125248619082, -34.58515594764219],
     [-58.501134441517074, -34.58528084601524],
     [-58.500453586190574, -34.58603409862799],
     [-58.501414697756594, -34.58662915900221],
     [-58.501587006137896, -34.58673255654524],
     [-58.50237798222988, -34.58585503463227],
     [-58.503143070233754, -34.58500617848209],
     [-58.50325353437369, -34.584883604661684],
     [-58.50391172054678, -34.584160626132125],
     [-58.502785468917594, -34.583463032232515],
     [-58.501653614798265, -34.582761978880534],
     [-58.50098691044247, -34.583496145439064],
     [-58.500885890992954, -34.58360730564663],
     [-58.50079065840724, -34.58371205540846],
     [-58.50011619388842, -34.58445410697302],
     [-58.50112114689106, -34.5850712694009],
     [-58.50125248619082, -34.58515594764219]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_4',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1034.0,
   'VIVIEND': 459.0,
   'HOGARES': 391.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.079476411007524,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.506297394317, -34.58152721917859],
     [-58.5063645093212, -34.58145270552479],
     [-58.50622924875431, -34.58147153835724],
     [-58.50592092171895, -34.58144298548719],
     [-58.50522550785841, -34.5813842851319],
     [-58.50503520015233, -34.58136956231455],
     [-58.50513767386339, -34.581434884626994],
     [-58.50465791068608, -34.58139314909356],
     [-58.5047012464251, -34.581343620925736],
     [-58.50459847185462, -34.58133569837209],
     [-58.5045797491794, -34.58135429665453],
     [-58.503710975975565, -34.58128557644135],
     [-58.50358358468126, -34.581431396238386],
     [-58.503253725424, -34.581397343713135],
     [-58.50322647925298, -34.58137732856993],
     [-58.5031856233716, -34.581374839104946],
     [-58.50310693788754, -34.581369859132074],
     [-58.50306002886572, -34.58136612011679],
     [-58.50302371300594, -34.581364880608305],
     [-58.50296773664538, -34.58138492328245],
     [-58.50182730046591, -34.581278448240994],
     [-58.50161148357668, -34.58151852120574],
     [-58.501638652887685, -34.58153534380464],
     [-58.502360815864236, -34.58198328766881],
     [-58.501653614798265, -34.582761978880534],
     [-58.502785468917594, -34.583463032232515],
     [-58.50391172054678, -34.584160626132125],
     [-58.50461882824989, -34.583383964337536],
     [-58.50472145947744, -34.58327125116221],
     [-58.50527877509502, -34.582653583174306],
     [-58.50560478687028, -34.58229226591878],
     [-58.505830125692796, -34.58204260494055],
     [-58.50593411495297, -34.581927918378554],
     [-58.506297394317, -34.58152721917859]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_5',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 993.0,
   'VIVIEND': 418.0,
   'HOGARES': 382.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.075389898498103,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.499862345523056, -34.58084286715024],
     [-58.499862546327314, -34.58084264659524],
     [-58.49986223873975, -34.58084259564394],
     [-58.49975900242946, -34.58082549469406],
     [-58.499098227326044, -34.58071019865785],
     [-58.49843660160261, -34.5805925753081],
     [-58.498371884645806, -34.580576255939164],
     [-58.49834734704103, -34.58056988967287],
     [-58.4979180137248, -34.5804584984546],
     [-58.49824676206713, -34.580670519367835],
     [-58.49749000193703, -34.58150427238914],
     [-58.497619116062864, -34.581583955144964],
     [-58.498620271800355, -34.58220621006713],
     [-58.49962050559168, -34.58282789359769],
     [-58.49975030425456, -34.58290595412845],
     [-58.49988725746494, -34.582988378608626],
     [-58.500885890992954, -34.58360730564663],
     [-58.50098691044247, -34.583496145439064],
     [-58.501653614798265, -34.582761978880534],
     [-58.502360815864236, -34.58198328766881],
     [-58.501638652887685, -34.58153534380464],
     [-58.50161148357668, -34.58151852120574],
     [-58.501224812896766, -34.58128145684815],
     [-58.50111801049893, -34.58140121080398],
     [-58.50056112752, -34.581144760855416],
     [-58.49980754229358, -34.58103337072537],
     [-58.4999632192907, -34.580861175356375],
     [-58.499862345523056, -34.58084286715024]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_6',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1014.0,
   'VIVIEND': 524.0,
   'HOGARES': 407.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.077883880137078,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500885890992954, -34.58360730564663],
     [-58.49988725746494, -34.582988378608626],
     [-58.49975030425456, -34.58290595412845],
     [-58.49962050559168, -34.58282789359769],
     [-58.498620271800355, -34.58220621006713],
     [-58.49852784607754, -34.58230694311149],
     [-58.49785397052528, -34.58305306674991],
     [-58.49774418160806, -34.58317457917298],
     [-58.49705616155363, -34.58393063210248],
     [-58.498184245303506, -34.58462912338421],
     [-58.49931762858733, -34.58533077162693],
     [-58.500453586190574, -34.58603409862799],
     [-58.501134441517074, -34.58528084601524],
     [-58.50125248619082, -34.58515594764219],
     [-58.50112114689106, -34.5850712694009],
     [-58.50011619388842, -34.58445410697302],
     [-58.50079065840724, -34.58371205540846],
     [-58.500885890992954, -34.58360730564663]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_7',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 887.0,
   'VIVIEND': 417.0,
   'HOGARES': 346.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.060031709678024,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49749000193703, -34.58150427238914],
     [-58.49824676206713, -34.580670519367835],
     [-58.4979180137248, -34.5804584984546],
     [-58.49765301499116, -34.58038970024129],
     [-58.496990348851476, -34.580215448675496],
     [-58.49690383298799, -34.5801929373624],
     [-58.49635379107161, -34.580802677913674],
     [-58.49626272657039, -34.58090362016217],
     [-58.49558475458382, -34.581648464946795],
     [-58.49672011935977, -34.58235084137853],
     [-58.49592153872898, -34.583228117937836],
     [-58.49705616155363, -34.58393063210248],
     [-58.49774418160806, -34.58317457917298],
     [-58.49785397052528, -34.58305306674991],
     [-58.49852784607754, -34.58230694311149],
     [-58.498620271800355, -34.58220621006713],
     [-58.497619116062864, -34.581583955144964],
     [-58.49749000193703, -34.58150427238914]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_20_8',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 937.0,
   'VIVIEND': 436.0,
   'HOGARES': 365.0,
   'HOGARES_': 35.0,
   'AREA_KM': 0.074257045133889,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49385981336718, -34.58058122372448],
     [-58.49372838716688, -34.580681399723396],
     [-58.493018305601076, -34.58122236182418],
     [-58.492852822862055, -34.5813326863386],
     [-58.493656693787905, -34.581825732687605],
     [-58.4947852316555, -34.58252453722544],
     [-58.49592153872898, -34.583228117937836],
     [-58.49672011935977, -34.58235084137853],
     [-58.49558475458382, -34.581648464946795],
     [-58.49626272657039, -34.58090362016217],
     [-58.49635379107161, -34.580802677913674],
     [-58.49690383298799, -34.5801929373624],
     [-58.49680854736809, -34.58017056928639],
     [-58.496832885331166, -34.580138026725976],
     [-58.49659385427829, -34.580061331487755],
     [-58.49618715413918, -34.57993277961788],
     [-58.49587310259121, -34.579831314375866],
     [-58.49526951993495, -34.579620064921926],
     [-58.495173461361574, -34.57957776585976],
     [-58.49512783786295, -34.579612567308644],
     [-58.4949451733636, -34.579752195519106],
     [-58.4948157934421, -34.57985293555102],
     [-58.494685135561944, -34.57995240815217],
     [-58.49385981336718, -34.58058122372448]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_1',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1052.0,
   'VIVIEND': 588.0,
   'HOGARES': 467.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.055352771340013,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.500453586190574, -34.58603409862799],
     [-58.49931762858733, -34.58533077162693],
     [-58.49919634800766, -34.585462359340774],
     [-58.49857828500743, -34.586146426662204],
     [-58.49792735887273, -34.58686676844342],
     [-58.49906562497145, -34.58757053005769],
     [-58.50019965146141, -34.58827167659627],
     [-58.50084937660179, -34.58755090069886],
     [-58.501587006137896, -34.58673255654524],
     [-58.501414697756594, -34.58662915900221],
     [-58.500453586190574, -34.58603409862799]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_10',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 664.0,
   'VIVIEND': 340.0,
   'HOGARES': 258.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.053745003266037,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48957635038646, -34.58506830135937],
     [-58.488905158456156, -34.58465280686388],
     [-58.488193075487175, -34.58526599565741],
     [-58.48836834752498, -34.585377862111955],
     [-58.488958977165616, -34.585750348018166],
     [-58.489685113902304, -34.58620822503936],
     [-58.49024969370203, -34.58656423127011],
     [-58.49081274526348, -34.58691924928805],
     [-58.49136949902173, -34.587270252018776],
     [-58.49193945896295, -34.587629699860344],
     [-58.49207215948797, -34.587483961502805],
     [-58.492574439663876, -34.58692432380536],
     [-58.49269173103933, -34.586793659187656],
     [-58.49322549743093, -34.58620351756885],
     [-58.49209292012062, -34.5855027281532],
     [-58.49144185790947, -34.58622317631506],
     [-58.49087404117856, -34.585871753864616],
     [-58.49030699569155, -34.5855206806946],
     [-58.48957635038646, -34.58506830135937]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_2',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1074.0,
   'VIVIEND': 530.0,
   'HOGARES': 476.0,
   'HOGARES_': 44.0,
   'AREA_KM': 0.05521282110782,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49931762858733, -34.58533077162693],
     [-58.498184245303506, -34.58462912338421],
     [-58.49705616155363, -34.58393063210248],
     [-58.4963145940982, -34.58474557000517],
     [-58.496220460905185, -34.58484904825482],
     [-58.49566280808603, -34.585466533927075],
     [-58.496792944679, -34.58616531902925],
     [-58.49792735887273, -34.58686676844342],
     [-58.49857828500743, -34.586146426662204],
     [-58.49919634800766, -34.585462359340774],
     [-58.49931762858733, -34.58533077162693]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_3',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 920.0,
   'VIVIEND': 437.0,
   'HOGARES': 360.0,
   'HOGARES_': 16.0,
   'AREA_KM': 0.055429386489332,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49404527293718, -34.58334115127676],
     [-58.49350974368771, -34.583934466262875],
     [-58.4933934787127, -34.58406330045329],
     [-58.49452732476211, -34.5847644297559],
     [-58.49566280808603, -34.585466533927075],
     [-58.496220460905185, -34.58484904825482],
     [-58.4963145940982, -34.58474557000517],
     [-58.49705616155363, -34.58393063210248],
     [-58.49592153872898, -34.583228117937836],
     [-58.4947852316555, -34.58252453722544],
     [-58.4946536494682, -34.58266717971354],
     [-58.49404527293718, -34.58334115127676]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_4',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1015.0,
   'VIVIEND': 529.0,
   'HOGARES': 421.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.063736988070279,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4947852316555, -34.58252453722544],
     [-58.493656693787905, -34.581825732687605],
     [-58.492852822862055, -34.5813326863386],
     [-58.492644862170266, -34.58147126096028],
     [-58.491942865765296, -34.58204080677382],
     [-58.49180488282722, -34.582152813429964],
     [-58.49133901506928, -34.582555113336234],
     [-58.49115098122325, -34.58271727264379],
     [-58.490441910881906, -34.58332885429872],
     [-58.49161047985014, -34.584079651584695],
     [-58.49214125754951, -34.583492825067225],
     [-58.492259055521835, -34.58336173812827],
     [-58.4933934787127, -34.58406330045329],
     [-58.49350974368771, -34.583934466262875],
     [-58.49404527293718, -34.58334115127676],
     [-58.4946536494682, -34.58266717971354],
     [-58.4947852316555, -34.58252453722544]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_5',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 813.0,
   'VIVIEND': 220.0,
   'HOGARES': 297.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.068654756728321,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49161047985014, -34.584079651584695],
     [-58.490441910881906, -34.58332885429872],
     [-58.48991908188251, -34.58377975398066],
     [-58.489837022228315, -34.58385047762348],
     [-58.48966379414952, -34.58399967335796],
     [-58.48923187039142, -34.58437153457516],
     [-58.488905158456156, -34.58465280686388],
     [-58.48957635038646, -34.58506830135937],
     [-58.49030699569155, -34.5855206806946],
     [-58.49087404117856, -34.585871753864616],
     [-58.49144185790947, -34.58622317631506],
     [-58.49209292012062, -34.5855027281532],
     [-58.49274431156566, -34.58478192423625],
     [-58.49329832163405, -34.58416881900549],
     [-58.4933934787127, -34.58406330045329],
     [-58.492259055521835, -34.58336173812827],
     [-58.49214125754951, -34.583492825067225],
     [-58.49161047985014, -34.584079651584695]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_6',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 869.0,
   'VIVIEND': 377.0,
   'HOGARES': 326.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.06472853337568,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49501126561515, -34.586185804053784],
     [-58.49557029073018, -34.58556902529586],
     [-58.49566280808603, -34.585466533927075],
     [-58.49452732476211, -34.5847644297559],
     [-58.4933934787127, -34.58406330045329],
     [-58.49329832163405, -34.58416881900549],
     [-58.49274431156566, -34.58478192423625],
     [-58.49209292012062, -34.5855027281532],
     [-58.49322549743093, -34.58620351756885],
     [-58.4943572420281, -34.586903733214676],
     [-58.495491560800154, -34.58760555733094],
     [-58.49614183279352, -34.58688593303631],
     [-58.49501126561515, -34.586185804053784]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_7',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 957.0,
   'VIVIEND': 437.0,
   'HOGARES': 340.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.090777318851709,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49906562497145, -34.58757053005769],
     [-58.49792735887273, -34.58686676844342],
     [-58.496792944679, -34.58616531902925],
     [-58.49566280808603, -34.585466533927075],
     [-58.49557029073018, -34.58556902529586],
     [-58.49501126561515, -34.586185804053784],
     [-58.49614183279352, -34.58688593303631],
     [-58.495491560800154, -34.58760555733094],
     [-58.49662572827986, -34.588307230012084],
     [-58.49762346392277, -34.58892449327244],
     [-58.49776374769766, -34.58901121493844],
     [-58.49875443032341, -34.58962368209661],
     [-58.4988987196635, -34.58971265481906],
     [-58.49954778686184, -34.58899378764747],
     [-58.500090540136135, -34.58839276827679],
     [-58.50019965146141, -34.58827167659627],
     [-58.49906562497145, -34.58757053005769]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_8',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 803.0,
   'VIVIEND': 398.0,
   'HOGARES': 319.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.07121441734004,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49662572827986, -34.588307230012084],
     [-58.495491560800154, -34.58760555733094],
     [-58.494839915725045, -34.58832665733635],
     [-58.49540623273242, -34.588677146078375],
     [-58.49487195626237, -34.589270466191394],
     [-58.49476036720029, -34.5893935256035],
     [-58.494991529828425, -34.58953698796926],
     [-58.495327116968824, -34.5897442258061],
     [-58.496465485238645, -34.59044716622224],
     [-58.497601572862656, -34.591148617689136],
     [-58.4977322259786, -34.59100435274373],
     [-58.49793795021909, -34.59077647319835],
     [-58.49824708778491, -34.59043419530074],
     [-58.4988987196635, -34.58971265481906],
     [-58.49875443032341, -34.58962368209661],
     [-58.49776374769766, -34.58901121493844],
     [-58.49762346392277, -34.58892449327244],
     [-58.49662572827986, -34.588307230012084]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_21_9',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 801.0,
   'VIVIEND': 322.0,
   'HOGARES': 286.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.057929438682266,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492574439663876, -34.58692432380536],
     [-58.49207215948797, -34.587483961502805],
     [-58.49193945896295, -34.587629699860344],
     [-58.49306278493952, -34.58833795765282],
     [-58.49328976911368, -34.58848107219005],
     [-58.493624581591284, -34.58868880790661],
     [-58.49419362184787, -34.589041907239114],
     [-58.49476036720029, -34.5893935256035],
     [-58.49487195626237, -34.589270466191394],
     [-58.49540623273242, -34.588677146078375],
     [-58.494839915725045, -34.58832665733635],
     [-58.495491560800154, -34.58760555733094],
     [-58.4943572420281, -34.586903733214676],
     [-58.49322549743093, -34.58620351756885],
     [-58.49269173103933, -34.586793659187656],
     [-58.492574439663876, -34.58692432380536]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_1',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 788.0,
   'VIVIEND': 330.0,
   'HOGARES': 294.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.069469731507483,
   'partidas': None},
  'geometry': {'type': 'MultiPolygon',
   'coordinates': [[[[-58.51187677176005, -34.58195689506734],
      [-58.511877413191165, -34.58195693648145],
      [-58.51187683630814, -34.581955250508166],
      [-58.51187677176005, -34.58195689506734]]],
    [[[-58.51331956105476, -34.58284629097469],
      [-58.51397007138555, -34.582132134570045],
      [-58.51409526452839, -34.582006993761944],
      [-58.513150311538496, -34.582038460554514],
      [-58.51310905206069, -34.582080637314405],
      [-58.51213756094991, -34.582091484142694],
      [-58.51196001286815, -34.582055770297686],
      [-58.511878078072584, -34.58195730211666],
      [-58.51187746659282, -34.58195565379429],
      [-58.51187683630814, -34.581955250508166],
      [-58.51187798223148, -34.581958301534435],
      [-58.51187677176005, -34.58195689506734],
      [-58.51013330157764, -34.58184431505248],
      [-58.509863889822526, -34.58182688395936],
      [-58.51004480352011, -34.58193913970244],
      [-58.50923351637035, -34.582828409900614],
      [-58.510367822150066, -34.583534744166215],
      [-58.51055444743189, -34.58365101103868],
      [-58.51127071218415, -34.584092143640994],
      [-58.511866625703206, -34.58445916443322],
      [-58.512671086094386, -34.58356537265685],
      [-58.51321234708975, -34.582964083784546],
      [-58.51331956105476, -34.58284629097469]]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_10',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 964.0,
   'VIVIEND': 404.0,
   'HOGARES': 370.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.089491275269896,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4988987196635, -34.58971265481906],
     [-58.49824708778491, -34.59043419530074],
     [-58.49793795021909, -34.59077647319835],
     [-58.4977322259786, -34.59100435274373],
     [-58.497601572862656, -34.591148617689136],
     [-58.49888631694352, -34.59194184684902],
     [-58.500216060919506, -34.59276293627889],
     [-58.50032917875135, -34.59263874469908],
     [-58.50055413717216, -34.59239282643887],
     [-58.50086574025946, -34.592052160977936],
     [-58.500980728888855, -34.591926418876476],
     [-58.50151795963613, -34.59133370516017],
     [-58.50217272060279, -34.59061137165583],
     [-58.50163549364791, -34.5902795674145],
     [-58.50150338225278, -34.5902008054876],
     [-58.501375189254595, -34.59012429573],
     [-58.50083711658009, -34.58979143185917],
     [-58.49954778686184, -34.58899378764747],
     [-58.4988987196635, -34.58971265481906]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_11',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 955.0,
   'VIVIEND': 464.0,
   'HOGARES': 371.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.060263415754646,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50218083418743, -34.59174194928172],
     [-58.5016366996757, -34.591404513458016],
     [-58.50151795963613, -34.59133370516017],
     [-58.500980728888855, -34.591926418876476],
     [-58.50086574025946, -34.592052160977936],
     [-58.50055413717216, -34.59239282643887],
     [-58.50032917875135, -34.59263874469908],
     [-58.500216060919506, -34.59276293627889],
     [-58.50132708284237, -34.593448867294356],
     [-58.501540890516324, -34.593581054873766],
     [-58.50271020038954, -34.5943037861468],
     [-58.50287068627417, -34.594401199614346],
     [-58.5035156714517, -34.593689214745744],
     [-58.50416745443454, -34.5929696183339],
     [-58.50283877580674, -34.5921494871597],
     [-58.50269848155411, -34.59206291222663],
     [-58.50218083418743, -34.59174194928172]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_2',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 954.0,
   'VIVIEND': 416.0,
   'HOGARES': 362.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.074604023753822,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50816480888414, -34.58168323056075],
     [-58.50727022637913, -34.581607432507205],
     [-58.506297394317, -34.58152721917859],
     [-58.50593411495297, -34.581927918378554],
     [-58.505830125692796, -34.58204260494055],
     [-58.50560478687028, -34.58229226591878],
     [-58.50527877509502, -34.582653583174306],
     [-58.505429532724555, -34.58274691229116],
     [-58.506562952778175, -34.583451380813024],
     [-58.50723993056296, -34.58387205792062],
     [-58.50775686752683, -34.584193352215124],
     [-58.50791146288217, -34.58428759233106],
     [-58.50857181439369, -34.58355832010772],
     [-58.509125275402994, -34.582947115022456],
     [-58.50923351637035, -34.582828409900614],
     [-58.51004480352011, -34.58193913970244],
     [-58.509863889822526, -34.58182688395936],
     [-58.50885954502507, -34.5817399425568],
     [-58.50816480888414, -34.58168323056075]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_3',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 786.0,
   'VIVIEND': 343.0,
   'HOGARES': 299.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.067613122501969,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.51055444743189, -34.58365101103868],
     [-58.510367822150066, -34.583534744166215],
     [-58.50923351637035, -34.582828409900614],
     [-58.509125275402994, -34.582947115022456],
     [-58.50857181439369, -34.58355832010772],
     [-58.50791146288217, -34.58428759233106],
     [-58.50857132909607, -34.584689676481716],
     [-58.50908605813847, -34.585003360173836],
     [-58.50923980539307, -34.58509830315221],
     [-58.50996663858823, -34.58554718587107],
     [-58.509292315497625, -34.58627041430544],
     [-58.50989138834414, -34.5866407533122],
     [-58.51043924315851, -34.58603475609145],
     [-58.510553017136736, -34.58590928702458],
     [-58.5112088487643, -34.58518570682035],
     [-58.511755834515476, -34.5845823095733],
     [-58.511866625703206, -34.58445916443322],
     [-58.51127071218415, -34.584092143640994],
     [-58.51055444743189, -34.58365101103868]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_4',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 885.0,
   'VIVIEND': 338.0,
   'HOGARES': 299.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.063920120736778,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50791146288217, -34.58428759233106],
     [-58.50775686752683, -34.584193352215124],
     [-58.50723993056296, -34.58387205792062],
     [-58.506562952778175, -34.583451380813024],
     [-58.506021298320164, -34.584049189549845],
     [-58.50590275466594, -34.58418029001416],
     [-58.505198973819766, -34.584958577729225],
     [-58.50587748991752, -34.58537975471738],
     [-58.506403289231535, -34.58570612203059],
     [-58.50654706863191, -34.585794311289796],
     [-58.50720566399561, -34.586198375040794],
     [-58.50770719566892, -34.58650615369499],
     [-58.50786980278504, -34.58660658815125],
     [-58.50857689336394, -34.585828143159084],
     [-58.50923980539307, -34.58509830315221],
     [-58.50908605813847, -34.585003360173836],
     [-58.50857132909607, -34.584689676481716],
     [-58.50791146288217, -34.58428759233106]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_5',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1207.0,
   'VIVIEND': 422.0,
   'HOGARES': 435.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.068275714264095,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50918694321219, -34.58741983861876],
     [-58.50989138834414, -34.5866407533122],
     [-58.509292315497625, -34.58627041430544],
     [-58.50996663858823, -34.58554718587107],
     [-58.50923980539307, -34.58509830315221],
     [-58.50857689336394, -34.585828143159084],
     [-58.50786980278504, -34.58660658815125],
     [-58.5072273763159, -34.587313877511185],
     [-58.507101510552786, -34.58745188325722],
     [-58.50699530304942, -34.587568402531005],
     [-58.50632035186816, -34.588310840196456],
     [-58.507035527633285, -34.58875263151031],
     [-58.50629231308599, -34.58957009479802],
     [-58.506902894956106, -34.589945725927315],
     [-58.50764270038257, -34.58912762641587],
     [-58.50842053148016, -34.588267465175754],
     [-58.50918694321219, -34.58741983861876]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_6',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1119.0,
   'VIVIEND': 555.0,
   'HOGARES': 448.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.062200167156458,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50786980278504, -34.58660658815125],
     [-58.50770719566892, -34.58650615369499],
     [-58.50720566399561, -34.586198375040794],
     [-58.50654706863191, -34.585794311289796],
     [-58.50578166551987, -34.58663945631724],
     [-58.505681670145094, -34.586749986261594],
     [-58.50500773698756, -34.58749495166181],
     [-58.50437677015287, -34.58819250349205],
     [-58.504246980875536, -34.588329592109254],
     [-58.504413844916925, -34.58842981842012],
     [-58.50491401335917, -34.58872986230699],
     [-58.50541682594149, -34.58903145252167],
     [-58.50557645370103, -34.58912963747826],
     [-58.50629231308599, -34.58957009479802],
     [-58.507035527633285, -34.58875263151031],
     [-58.50632035186816, -34.588310840196456],
     [-58.50699530304942, -34.587568402531005],
     [-58.507101510552786, -34.58745188325722],
     [-58.5072273763159, -34.587313877511185],
     [-58.50786980278504, -34.58660658815125]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_7',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 1121.0,
   'VIVIEND': 549.0,
   'HOGARES': 459.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.066304848288894,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50347548500159, -34.58917402017579],
     [-58.50282278923038, -34.589894177022224],
     [-58.504008668456166, -34.59062646846736],
     [-58.50414334015981, -34.59071050857536],
     [-58.504294878039794, -34.590804965477254],
     [-58.50473390380758, -34.591075452898046],
     [-58.50547073075361, -34.5915294994183],
     [-58.506122564518236, -34.59080862467853],
     [-58.506902894956106, -34.589945725927315],
     [-58.50629231308599, -34.58957009479802],
     [-58.50557645370103, -34.58912963747826],
     [-58.50541682594149, -34.58903145252167],
     [-58.50491401335917, -34.58872986230699],
     [-58.504413844916925, -34.58842981842012],
     [-58.504246980875536, -34.588329592109254],
     [-58.5041007653572, -34.58848415121601],
     [-58.50347548500159, -34.58917402017579]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_8',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 982.0,
   'VIVIEND': 386.0,
   'HOGARES': 365.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.060499200822219,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50283877580674, -34.5921494871597],
     [-58.50416745443454, -34.5929696183339],
     [-58.50468364704696, -34.59239978559668],
     [-58.50482109848823, -34.59224776416307],
     [-58.50547073075361, -34.5915294994183],
     [-58.50473390380758, -34.591075452898046],
     [-58.504294878039794, -34.590804965477254],
     [-58.50414334015981, -34.59071050857536],
     [-58.504008668456166, -34.59062646846736],
     [-58.50282278923038, -34.589894177022224],
     [-58.50217272060279, -34.59061137165583],
     [-58.50151795963613, -34.59133370516017],
     [-58.5016366996757, -34.591404513458016],
     [-58.50218083418743, -34.59174194928172],
     [-58.50269848155411, -34.59206291222663],
     [-58.50283877580674, -34.5921494871597]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_22_9',
   'BARRIO': 'VILLA PUEYRREDON',
   'COMUNA': '12',
   'POBLACI': 920.0,
   'VIVIEND': 448.0,
   'HOGARES': 365.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.094700901891977,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.50224575116013, -34.587128055274974],
     [-58.501587006137896, -34.58673255654524],
     [-58.50084937660179, -34.58755090069886],
     [-58.50019965146141, -34.58827167659627],
     [-58.500090540136135, -34.58839276827679],
     [-58.49954778686184, -34.58899378764747],
     [-58.50083711658009, -34.58979143185917],
     [-58.501375189254595, -34.59012429573],
     [-58.50150338225278, -34.5902008054876],
     [-58.50163549364791, -34.5902795674145],
     [-58.50217272060279, -34.59061137165583],
     [-58.50282278923038, -34.589894177022224],
     [-58.50347548500159, -34.58917402017579],
     [-58.5041007653572, -34.58848415121601],
     [-58.504246980875536, -34.588329592109254],
     [-58.503575781019805, -34.587926643535056],
     [-58.50288814857002, -34.58751376692099],
     [-58.50224575116013, -34.587128055274974]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 232.0,
   'VIVIEND': 126.0,
   'HOGARES': 104.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.157285108394065,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48691645863233, -34.545425982378],
     [-58.486334190932574, -34.54619555036054],
     [-58.48574740331212, -34.54697110237328],
     [-58.48516383786138, -34.54774228458278],
     [-58.48542789096571, -34.54788209796859],
     [-58.48701077874914, -34.54871244519139],
     [-58.488272344404784, -34.54937382171532],
     [-58.48885998099511, -34.548612412936166],
     [-58.48944998907767, -34.54784811332871],
     [-58.48990047083789, -34.54807083563243],
     [-58.49015619008798, -34.547686685403576],
     [-58.49025648143732, -34.547520602795515],
     [-58.490316598254246, -34.547349036113836],
     [-58.49032471858376, -34.54719677737561],
     [-58.49032399262254, -34.547196399825616],
     [-58.49087044748504, -34.546429516705246],
     [-58.49114096129393, -34.5460498772413],
     [-58.48956532547281, -34.5453543653128],
     [-58.48760392902623, -34.544488527512534],
     [-58.4873282295477, -34.54485131885723],
     [-58.486898558059266, -34.54541671351921],
     [-58.48691645863233, -34.545425982378]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_10',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 878.0,
   'VIVIEND': 363.0,
   'HOGARES': 305.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.059570537006706,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4832040172281, -34.55205342755131],
     [-58.48377588948215, -34.55130007455104],
     [-58.48436349215474, -34.55052594089256],
     [-58.48413442149088, -34.550414147908455],
     [-58.48359898930689, -34.55015289702257],
     [-58.483414353294904, -34.550054475639605],
     [-58.48249322270325, -34.54956335011646],
     [-58.48204010976861, -34.549321797725575],
     [-58.481575763347415, -34.54907475230205],
     [-58.48099810158602, -34.54984098374752],
     [-58.48089242126339, -34.54998114343778],
     [-58.4810009523108, -34.55003274806137],
     [-58.48117554334393, -34.55013716066069],
     [-58.48140768415557, -34.55029705836823],
     [-58.48162654848419, -34.55045878871438],
     [-58.48174096736744, -34.550571379001106],
     [-58.48183469915547, -34.550663690292666],
     [-58.48198148180047, -34.550861910929825],
     [-58.482104008471026, -34.55106443110851],
     [-58.4821760940697, -34.5513045150269],
     [-58.482197733445496, -34.55138679885686],
     [-58.48219806080439, -34.551432170535804],
     [-58.48219777962343, -34.55158476535325],
     [-58.48212141244348, -34.55168972362008],
     [-58.48198187547204, -34.5518836808372],
     [-58.48177399909337, -34.55207581588036],
     [-58.481668895343816, -34.55212744185113],
     [-58.481615766078605, -34.552154210625154],
     [-58.48145978222277, -34.552230683624906],
     [-58.48168042856593, -34.552345792833016],
     [-58.482612904383835, -34.55283206314985],
     [-58.4832040172281, -34.55205342755131]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_11',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 785.0,
   'VIVIEND': 346.0,
   'HOGARES': 290.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.061215621029407,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4832040172281, -34.55205342755131],
     [-58.482612904383835, -34.55283206314985],
     [-58.4835415602962, -34.553316355083524],
     [-58.48447210015648, -34.55380296357007],
     [-58.48506524576993, -34.553025938477546],
     [-58.48564434132937, -34.55226743457033],
     [-58.48623525297512, -34.55149329140771],
     [-58.48530268622876, -34.55100817545072],
     [-58.48453816852566, -34.550611193314545],
     [-58.48436349215474, -34.55052594089256],
     [-58.48377588948215, -34.55130007455104],
     [-58.4832040172281, -34.55205342755131]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 698.0,
   'VIVIEND': 268.0,
   'HOGARES': 249.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.083804479854226,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4873282295477, -34.54485131885723],
     [-58.48760392902623, -34.544488527512534],
     [-58.4856461727472, -34.54362424719033],
     [-58.48538560692602, -34.54398794510016],
     [-58.48505336231751, -34.54445168687398],
     [-58.48506959264991, -34.544460256508266],
     [-58.48448271962252, -34.54523298571596],
     [-58.48389906880224, -34.546001345152376],
     [-58.48331719401585, -34.54676744783263],
     [-58.48384920355727, -34.54704588417818],
     [-58.4842370200996, -34.547251313918856],
     [-58.48516383786138, -34.54774228458278],
     [-58.48574740331212, -34.54697110237328],
     [-58.486334190932574, -34.54619555036054],
     [-58.48691645863233, -34.545425982378],
     [-58.486898558059266, -34.54541671351921],
     [-58.4873282295477, -34.54485131885723]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 824.0,
   'VIVIEND': 313.0,
   'HOGARES': 270.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.099919203772008,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48297747204587, -34.54552120919017],
     [-58.482395080895806, -34.546284772355605],
     [-58.48331719401585, -34.54676744783263],
     [-58.48389906880224, -34.546001345152376],
     [-58.48448271962252, -34.54523298571596],
     [-58.48506959264991, -34.544460256508266],
     [-58.48505336231751, -34.54445168687398],
     [-58.48538560692602, -34.54398794510016],
     [-58.4856461727472, -34.54362424719033],
     [-58.48275036288862, -34.542345758752816],
     [-58.48248920771505, -34.542714419290704],
     [-58.4822429564309, -34.54306203719677],
     [-58.48224478984624, -34.543062822117385],
     [-58.48169669785376, -34.54378461524943],
     [-58.4811117553417, -34.54455493362611],
     [-58.48205333295994, -34.54504254554201],
     [-58.48297747204587, -34.54552120919017]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 805.0,
   'VIVIEND': 304.0,
   'HOGARES': 268.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.060963950909078,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479951622914086, -34.54608260227096],
     [-58.47936239384321, -34.5468584760911],
     [-58.480302881351435, -34.547348848005726],
     [-58.48058607616067, -34.54749381007092],
     [-58.48122916336165, -34.547825975061926],
     [-58.48181284995867, -34.547051079164135],
     [-58.48199067652278, -34.546814989603],
     [-58.482395080895806, -34.546284772355605],
     [-58.48297747204587, -34.54552120919017],
     [-58.48205333295994, -34.54504254554201],
     [-58.4811117553417, -34.54455493362611],
     [-58.480529269502014, -34.545321938812364],
     [-58.479951622914086, -34.54608260227096]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 819.0,
   'VIVIEND': 341.0,
   'HOGARES': 292.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.060498754694611,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48458375007836, -34.54850902656694],
     [-58.48516383786138, -34.54774228458278],
     [-58.4842370200996, -34.547251313918856],
     [-58.48384920355727, -34.54704588417818],
     [-58.48331719401585, -34.54676744783263],
     [-58.482395080895806, -34.546284772355605],
     [-58.48199067652278, -34.546814989603],
     [-58.48181284995867, -34.547051079164135],
     [-58.48122916336165, -34.547825975061926],
     [-58.4816793700046, -34.54805851669163],
     [-58.482155711802946, -34.54830534858048],
     [-58.48307724877871, -34.54878281441467],
     [-58.483863874801116, -34.549190365604055],
     [-58.48400807599671, -34.54926977888382],
     [-58.48425388313236, -34.54894493989041],
     [-58.48458375007836, -34.54850902656694]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1820.0,
   'VIVIEND': 347.0,
   'HOGARES': 451.0,
   'HOGARES_': 30.0,
   'AREA_KM': 0.067487297238141,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48425388313236, -34.54894493989041],
     [-58.48400807599671, -34.54926977888382],
     [-58.484809529833534, -34.5497113361846],
     [-58.48493211033146, -34.549776808313],
     [-58.48586432422516, -34.55027453317664],
     [-58.48665114674349, -34.550677347854304],
     [-58.48679918262511, -34.55075443307105],
     [-58.4870611191338, -34.550890862915885],
     [-58.48764852033039, -34.55012361500188],
     [-58.48789185727847, -34.54983109388564],
     [-58.488272344404784, -34.54937382171532],
     [-58.48701077874914, -34.54871244519139],
     [-58.48542789096571, -34.54788209796859],
     [-58.48516383786138, -34.54774228458278],
     [-58.48458375007836, -34.54850902656694],
     [-58.48425388313236, -34.54894493989041]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1009.0,
   'VIVIEND': 422.0,
   'HOGARES': 378.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.029863521297634,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48493211033146, -34.549776808313],
     [-58.484809529833534, -34.5497113361846],
     [-58.48400807599671, -34.54926977888382],
     [-58.483414353294904, -34.550054475639605],
     [-58.48359898930689, -34.55015289702257],
     [-58.48413442149088, -34.550414147908455],
     [-58.48436349215474, -34.55052594089256],
     [-58.48453816852566, -34.550611193314545],
     [-58.48530268622876, -34.55100817545072],
     [-58.48623525297512, -34.55149329140771],
     [-58.48633990572431, -34.551356155562594],
     [-58.48679918262511, -34.55075443307105],
     [-58.48665114674349, -34.550677347854304],
     [-58.48586432422516, -34.55027453317664],
     [-58.48493211033146, -34.549776808313]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 724.0,
   'VIVIEND': 303.0,
   'HOGARES': 253.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.050406221953869,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.482155711802946, -34.54830534858048],
     [-58.4816793700046, -34.54805851669163],
     [-58.48122916336165, -34.547825975061926],
     [-58.48058607616067, -34.54749381007092],
     [-58.480302881351435, -34.547348848005726],
     [-58.47936239384321, -34.5468584760911],
     [-58.47879417096025, -34.5476066675335],
     [-58.479733983280425, -34.548100072093575],
     [-58.48048253841106, -34.54849307263554],
     [-58.48065678260574, -34.54858572523206],
     [-58.481575763347415, -34.54907475230205],
     [-58.48204010976861, -34.549321797725575],
     [-58.48249322270325, -34.54956335011646],
     [-58.483414353294904, -34.550054475639605],
     [-58.48400807599671, -34.54926977888382],
     [-58.483863874801116, -34.549190365604055],
     [-58.48307724877871, -34.54878281441467],
     [-58.482155711802946, -34.54830534858048]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_3_9',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 669.0,
   'VIVIEND': 235.0,
   'HOGARES': 223.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.184832982595325,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477603916094985, -34.549173684144435],
     [-58.4770298753053, -34.549929332757],
     [-58.47665367070873, -34.55042107716617],
     [-58.47644161223638, -34.550698219903055],
     [-58.476500179019546, -34.55074772141249],
     [-58.47654334375362, -34.550818844827006],
     [-58.47660703461864, -34.550970953556494],
     [-58.47670639572146, -34.55116453793124],
     [-58.4768484889967, -34.55138185018069],
     [-58.47698052547554, -34.551517541958276],
     [-58.477064717239514, -34.551592815393],
     [-58.47714235427126, -34.55166224434806],
     [-58.477418163335976, -34.55186489182489],
     [-58.477620591185556, -34.55199550386247],
     [-58.47785221154826, -34.552110618652485],
     [-58.47794303795839, -34.552154270254775],
     [-58.478085874835735, -34.552223056629785],
     [-58.47833638839809, -34.55231781556643],
     [-58.478617713569214, -34.552407569867626],
     [-58.478775014326274, -34.5524407894065],
     [-58.4789898549313, -34.55248048009101],
     [-58.47908501815122, -34.55249807336757],
     [-58.47950618308492, -34.55255034118392],
     [-58.47987124956406, -34.55256655834139],
     [-58.47998568313655, -34.55257473441723],
     [-58.480186786890954, -34.552619960670974],
     [-58.480336723164086, -34.55255754941997],
     [-58.480663148826935, -34.552474161687016],
     [-58.48106793922657, -34.55236828135504],
     [-58.48145978222277, -34.552230683624906],
     [-58.481615766078605, -34.552154210625154],
     [-58.481668895343816, -34.55212744185113],
     [-58.48177399909337, -34.55207581588036],
     [-58.48198187547204, -34.5518836808372],
     [-58.48212141244348, -34.55168972362008],
     [-58.48219777962343, -34.55158476535325],
     [-58.48219806080439, -34.551432170535804],
     [-58.482197733445496, -34.55138679885686],
     [-58.4821760940697, -34.5513045150269],
     [-58.482104008471026, -34.55106443110851],
     [-58.48198148180047, -34.550861910929825],
     [-58.48183469915547, -34.550663690292666],
     [-58.48174096736744, -34.550571379001106],
     [-58.48162654848419, -34.55045878871438],
     [-58.48140768415557, -34.55029705836823],
     [-58.48117554334393, -34.55013716066069],
     [-58.4810009523108, -34.55003274806137],
     [-58.48089242126339, -34.54998114343778],
     [-58.48099810158602, -34.54984098374752],
     [-58.481575763347415, -34.54907475230205],
     [-58.48065678260574, -34.54858572523206],
     [-58.48048253841106, -34.54849307263554],
     [-58.479733983280425, -34.548100072093575],
     [-58.47879417096025, -34.5476066675335],
     [-58.47837203892266, -34.54816243896574],
     [-58.47819709202021, -34.548392818490036],
     [-58.477603916094985, -34.549173684144435]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 769.0,
   'VIVIEND': 284.0,
   'HOGARES': 277.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.069567997059971,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4799104602955, -34.54416305769219],
     [-58.47971198687742, -34.54456915106208],
     [-58.47950534402456, -34.54498968215316],
     [-58.4791010700926, -34.545812502143264],
     [-58.47869687328905, -34.546635179826225],
     [-58.47936239384321, -34.5468584760911],
     [-58.479951622914086, -34.54608260227096],
     [-58.480529269502014, -34.545321938812364],
     [-58.4811117553417, -34.54455493362611],
     [-58.48169669785376, -34.54378461524943],
     [-58.48224478984624, -34.543062822117385],
     [-58.4822429564309, -34.54306203719677],
     [-58.48248920771505, -34.542714419290704],
     [-58.48275036288862, -34.542345758752816],
     [-58.481144920515, -34.541636915823354],
     [-58.48093766944679, -34.54204545499347],
     [-58.48070865396362, -34.54249689171275],
     [-58.48072219896147, -34.54250163497996],
     [-58.48031531280849, -34.5433343895137],
     [-58.4799104602955, -34.54416305769219]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_10',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 630.0,
   'VIVIEND': 293.0,
   'HOGARES': 243.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.065203421520919,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47879417096025, -34.5476066675335],
     [-58.47730047303194, -34.54713128132973],
     [-58.476753351678354, -34.54695141193972],
     [-58.476289559767274, -34.54679702437368],
     [-58.475289123287595, -34.54646395515912],
     [-58.4748843763064, -34.54729450769507],
     [-58.474484981769656, -34.548114072101924],
     [-58.475478626528464, -34.548451655665055],
     [-58.476497644197956, -34.54879781999616],
     [-58.477603916094985, -34.549173684144435],
     [-58.47819709202021, -34.548392818490036],
     [-58.47837203892266, -34.54816243896574],
     [-58.47879417096025, -34.5476066675335]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 788.0,
   'VIVIEND': 327.0,
   'HOGARES': 287.0,
   'HOGARES_': 12.0,
   'AREA_KM': 0.075187979444563,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47810395232346, -34.54547332859227],
     [-58.47776398154801, -34.54616458372072],
     [-58.47769813133344, -34.54630198927081],
     [-58.47730047303194, -34.54713128132973],
     [-58.47879417096025, -34.5476066675335],
     [-58.47936239384321, -34.5468584760911],
     [-58.47869687328905, -34.546635179826225],
     [-58.4791010700926, -34.545812502143264],
     [-58.47950534402456, -34.54498968215316],
     [-58.47971198687742, -34.54456915106208],
     [-58.4799104602955, -34.54416305769219],
     [-58.48031531280849, -34.5433343895137],
     [-58.48072219896147, -34.54250163497996],
     [-58.48070865396362, -34.54249689171275],
     [-58.48093766944679, -34.54204545499347],
     [-58.481144920515, -34.541636915823354],
     [-58.48014089495022, -34.54119359656422],
     [-58.479959029308546, -34.54162348689859],
     [-58.479719080142324, -34.542190666676134],
     [-58.479706481133825, -34.54218775934161],
     [-58.47931124234822, -34.54300226909664],
     [-58.478907573591734, -34.54383403249793],
     [-58.478714371234425, -34.544232165641894],
     [-58.47850432110922, -34.54465924495394],
     [-58.47810395232346, -34.54547332859227]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1088.0,
   'VIVIEND': 471.0,
   'HOGARES': 418.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.078071954744101,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.476289559767274, -34.54679702437368],
     [-58.476753351678354, -34.54695141193972],
     [-58.47730047303194, -34.54713128132973],
     [-58.47769813133344, -34.54630198927081],
     [-58.47776398154801, -34.54616458372072],
     [-58.47810395232346, -34.54547332859227],
     [-58.47850432110922, -34.54465924495394],
     [-58.478714371234425, -34.544232165641894],
     [-58.478907573591734, -34.54383403249793],
     [-58.47790316275095, -34.54350443584469],
     [-58.47716652040489, -34.54326275924294],
     [-58.476907270892966, -34.54317722434104],
     [-58.47681742984364, -34.543363929175136],
     [-58.47650289480653, -34.54399862750649],
     [-58.47610497601379, -34.544801366119636],
     [-58.47576694749252, -34.545483319569044],
     [-58.47569454287215, -34.545631922190736],
     [-58.475490685476025, -34.54605033339745],
     [-58.475289123287595, -34.54646395515912],
     [-58.476289559767274, -34.54679702437368]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 952.0,
   'VIVIEND': 331.0,
   'HOGARES': 295.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.070898732746437,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47885445343498, -34.54156307185208],
     [-58.47871051210248, -34.54185690042626],
     [-58.4777040824131, -34.541522513445955],
     [-58.476703192874574, -34.54118994854477],
     [-58.476302313777694, -34.54201177345788],
     [-58.47609889358095, -34.542428988668725],
     [-58.475896577347214, -34.54284373854765],
     [-58.476907270892966, -34.54317722434104],
     [-58.47716652040489, -34.54326275924294],
     [-58.47790316275095, -34.54350443584469],
     [-58.478907573591734, -34.54383403249793],
     [-58.47931124234822, -34.54300226909664],
     [-58.479706481133825, -34.54218775934161],
     [-58.479719080142324, -34.542190666676134],
     [-58.479959029308546, -34.54162348689859],
     [-58.48014089495022, -34.54119359656422],
     [-58.47913047660734, -34.54074744151176],
     [-58.47899754023999, -34.54118317646982],
     [-58.478910974457634, -34.54146691673903],
     [-58.47890260274062, -34.541459330674265],
     [-58.47885445343498, -34.54156307185208]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 606.0,
   'VIVIEND': 298.0,
   'HOGARES': 249.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.099312370877922,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.476703192874574, -34.54118994854477],
     [-58.4777040824131, -34.541522513445955],
     [-58.47871051210248, -34.54185690042626],
     [-58.47885445343498, -34.54156307185208],
     [-58.47890260274062, -34.541459330674265],
     [-58.478910974457634, -34.54146691673903],
     [-58.47899754023999, -34.54118317646982],
     [-58.479135143505026, -34.540748087686296],
     [-58.47727734389763, -34.53992914770886],
     [-58.47531276052003, -34.53906157632821],
     [-58.47516146708505, -34.539279212406505],
     [-58.47481163699737, -34.53978243899492],
     [-58.47481179503053, -34.539782512280226],
     [-58.474808343386755, -34.539787176782454],
     [-58.47432773417774, -34.54043665915371],
     [-58.47481522730581, -34.54056997947836],
     [-58.47478349395578, -34.54063189768744],
     [-58.47474722810065, -34.54070882604732],
     [-58.474413057261735, -34.541394490202144],
     [-58.47421856539892, -34.54181325079897],
     [-58.47411902154463, -34.542027420028376],
     [-58.47402364481102, -34.54222278553217],
     [-58.475022748755414, -34.5425548091259],
     [-58.475295186602615, -34.54264534679337],
     [-58.475896577347214, -34.54284373854765],
     [-58.47609889358095, -34.542428988668725],
     [-58.476302313777694, -34.54201177345788],
     [-58.476703192874574, -34.54118994854477]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 760.0,
   'VIVIEND': 368.0,
   'HOGARES': 297.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.055230978242137,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.476907270892966, -34.54317722434104],
     [-58.475896577347214, -34.54284373854765],
     [-58.475295186602615, -34.54264534679337],
     [-58.475022748755414, -34.5425548091259],
     [-58.47402364481102, -34.54222278553217],
     [-58.47362145819785, -34.54304741859549],
     [-58.473234749155424, -34.543840076328706],
     [-58.47420680417328, -34.54416555939401],
     [-58.475110011016284, -34.54446801302785],
     [-58.47595475193881, -34.54475088841735],
     [-58.47610497601379, -34.544801366119636],
     [-58.47650289480653, -34.54399862750649],
     [-58.47681742984364, -34.543363929175136],
     [-58.476907270892966, -34.54317722434104]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1071.0,
   'VIVIEND': 653.0,
   'HOGARES': 499.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.05671951751855,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47375636414484, -34.5412087020392],
     [-58.47318668539634, -34.54197855885988],
     [-58.472636397251705, -34.54272221356478],
     [-58.47209231117391, -34.543457414325296],
     [-58.471494350054066, -34.5442654350226],
     [-58.47093747933862, -34.54501802613194],
     [-58.47212532422007, -34.545414299801486],
     [-58.47212538301426, -34.54541414634643],
     [-58.47227177587495, -34.545462938875815],
     [-58.47236582487329, -34.54549434062581],
     [-58.47280505730244, -34.54466668073047],
     [-58.473132816700485, -34.5440489630788],
     [-58.473234749155424, -34.543840076328706],
     [-58.47362145819785, -34.54304741859549],
     [-58.47402364481102, -34.54222278553217],
     [-58.47411902154463, -34.542027420028376],
     [-58.47421856539892, -34.54181325079897],
     [-58.474413057261735, -34.541394490202144],
     [-58.47474722810065, -34.54070882604732],
     [-58.47478349395578, -34.54063189768744],
     [-58.47481522730581, -34.54056997947836],
     [-58.47432773417774, -34.54043665915371],
     [-58.47407766004558, -34.540774577917674],
     [-58.47375636414484, -34.5412087020392]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 786.0,
   'VIVIEND': 355.0,
   'HOGARES': 289.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.057116109922811,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47280505730244, -34.54466668073047],
     [-58.47236582487329, -34.54549434062581],
     [-58.473036340914234, -34.54571788229134],
     [-58.47330580791596, -34.54580701611827],
     [-58.47430137687107, -34.54613636960459],
     [-58.47489538554117, -34.546332865423146],
     [-58.475289123287595, -34.54646395515912],
     [-58.475490685476025, -34.54605033339745],
     [-58.47569454287215, -34.545631922190736],
     [-58.47576694749252, -34.545483319569044],
     [-58.47610497601379, -34.544801366119636],
     [-58.47595475193881, -34.54475088841735],
     [-58.475110011016284, -34.54446801302785],
     [-58.47420680417328, -34.54416555939401],
     [-58.473234749155424, -34.543840076328706],
     [-58.473132816700485, -34.5440489630788],
     [-58.47280505730244, -34.54466668073047]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_4_9',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 594.0,
   'VIVIEND': 279.0,
   'HOGARES': 224.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.038590405676186,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.472909551817345, -34.546608053760565],
     [-58.47250129036175, -34.547433598562804],
     [-58.47350087765246, -34.547777676799285],
     [-58.47397658671365, -34.54794136981287],
     [-58.474484981769656, -34.548114072101924],
     [-58.4748843763064, -34.54729450769507],
     [-58.475289123287595, -34.54646395515912],
     [-58.47489538554117, -34.546332865423146],
     [-58.47430137687107, -34.54613636960459],
     [-58.47330580791596, -34.54580701611827],
     [-58.472909551817345, -34.546608053760565]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 622.0,
   'VIVIEND': 256.0,
   'HOGARES': 212.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.062781824728906,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.476497644197956, -34.54879781999616],
     [-58.475478626528464, -34.548451655665055],
     [-58.474484981769656, -34.548114072101924],
     [-58.47408158023994, -34.54894187508369],
     [-58.47369612476847, -34.54973270236778],
     [-58.47364787744807, -34.54982362418035],
     [-58.47350270938003, -34.55009709377393],
     [-58.474568617597875, -34.550308407866474],
     [-58.475623380909624, -34.55051746025608],
     [-58.47628959048863, -34.55065098237224],
     [-58.47644161223638, -34.550698219903055],
     [-58.47665367070873, -34.55042107716617],
     [-58.4770298753053, -34.549929332757],
     [-58.477603916094985, -34.549173684144435],
     [-58.476497644197956, -34.54879781999616]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_10',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 695.0,
   'VIVIEND': 326.0,
   'HOGARES': 284.0,
   'HOGARES_': 26.0,
   'AREA_KM': 0.041439448768914,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47460237400191, -34.55186428326848],
     [-58.473909826364284, -34.55277303023687],
     [-58.47383621354783, -34.55286944747949],
     [-58.47450204659276, -34.55323777305671],
     [-58.47457412710396, -34.55314304574438],
     [-58.47527875429514, -34.55221612441677],
     [-58.47566969648593, -34.55170170627884],
     [-58.47586091139001, -34.55145315934162],
     [-58.47644161223638, -34.550698219903055],
     [-58.47628959048863, -34.55065098237224],
     [-58.475623380909624, -34.55051746025608],
     [-58.474568617597875, -34.550308407866474],
     [-58.47350270938003, -34.55009709377393],
     [-58.47341564616263, -34.550159849290296],
     [-58.47430983142446, -34.550633017258136],
     [-58.473722219914194, -34.551406539142434],
     [-58.47460237400191, -34.55186428326848]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_11',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 793.0,
   'VIVIEND': 377.0,
   'HOGARES': 332.0,
   'HOGARES_': 31.0,
   'AREA_KM': 0.047910006336212,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471985688616705, -34.55050131185757],
     [-58.471113308791885, -34.55004601307075],
     [-58.470469588206576, -34.550892271285846],
     [-58.47040805791541, -34.550973192429424],
     [-58.47126393312118, -34.551446596325455],
     [-58.47210390043916, -34.55191126282877],
     [-58.47297315897903, -34.55239211858584],
     [-58.47383621354783, -34.55286944747949],
     [-58.473909826364284, -34.55277303023687],
     [-58.47460237400191, -34.55186428326848],
     [-58.473722219914194, -34.551406539142434],
     [-58.473100925449565, -34.55108334723451],
     [-58.47282964789268, -34.55094174726126],
     [-58.471985688616705, -34.55050131185757]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 658.0,
   'VIVIEND': 356.0,
   'HOGARES': 283.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.050004546018675,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.472087235165525, -34.548276255387826],
     [-58.47152953142208, -34.549402518927764],
     [-58.47139269854275, -34.54967880239219],
     [-58.47245297847905, -34.54988900858459],
     [-58.47350270938003, -34.55009709377393],
     [-58.47364787744807, -34.54982362418035],
     [-58.47369612476847, -34.54973270236778],
     [-58.47408158023994, -34.54894187508369],
     [-58.474484981769656, -34.548114072101924],
     [-58.47397658671365, -34.54794136981287],
     [-58.47350087765246, -34.547777676799285],
     [-58.47250129036175, -34.547433598562804],
     [-58.472296305699466, -34.54784813107968],
     [-58.472087235165525, -34.548276255387826]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1358.0,
   'VIVIEND': 665.0,
   'HOGARES': 543.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.046136002374768,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47108892557325, -34.54794385591892],
     [-58.47007981448945, -34.54760785729351],
     [-58.46944984333683, -34.54892595100984],
     [-58.469423378013296, -34.54898377064125],
     [-58.46929539082745, -34.54926307952283],
     [-58.469819183838055, -34.54936692562133],
     [-58.4703527663199, -34.54947267030788],
     [-58.47139269854275, -34.54967880239219],
     [-58.47152953142208, -34.549402518927764],
     [-58.472087235165525, -34.548276255387826],
     [-58.472296305699466, -34.54784813107968],
     [-58.47250129036175, -34.547433598562804],
     [-58.4714983918735, -34.54708845600031],
     [-58.47129502150347, -34.54751573350573],
     [-58.47108892557325, -34.54794385591892]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 657.0,
   'VIVIEND': 313.0,
   'HOGARES': 277.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.019627614344656,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471896872610955, -34.54625094314138],
     [-58.4714983918735, -34.54708845600031],
     [-58.47250129036175, -34.547433598562804],
     [-58.472909551817345, -34.546608053760565],
     [-58.47330580791596, -34.54580701611827],
     [-58.473036340914234, -34.54571788229134],
     [-58.47236582487329, -34.54549434062581],
     [-58.47227177587495, -34.545462938875815],
     [-58.471896872610955, -34.54625094314138]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 694.0,
   'VIVIEND': 436.0,
   'HOGARES': 348.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.02872717594555,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47045379631131, -34.54672887089319],
     [-58.4714983918735, -34.54708845600031],
     [-58.471896872610955, -34.54625094314138],
     [-58.47227177587495, -34.545462938875815],
     [-58.47212538301426, -34.54541414634643],
     [-58.47212532422007, -34.545414299801486],
     [-58.47093747933862, -34.54501802613194],
     [-58.4704130212572, -34.54572765385346],
     [-58.46983136700785, -34.54651467869154],
     [-58.4702212058259, -34.54664909571416],
     [-58.47045379631131, -34.54672887089319]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 635.0,
   'VIVIEND': 424.0,
   'HOGARES': 301.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.039956637604833,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47045379631131, -34.54672887089319],
     [-58.4702212058259, -34.54664909571416],
     [-58.46983136700785, -34.54651467869154],
     [-58.469339993439455, -34.54716408708639],
     [-58.468801208561125, -34.54785913062659],
     [-58.46852947240379, -34.54820971503538],
     [-58.46824837177844, -34.54856241196778],
     [-58.46811918214157, -34.548724534014895],
     [-58.46806384584371, -34.548793974997025],
     [-58.46795426864063, -34.548931481947],
     [-58.46795356676196, -34.548932362723264],
     [-58.46790905642405, -34.54898821092722],
     [-58.46929539082745, -34.54926307952283],
     [-58.469423378013296, -34.54898377064125],
     [-58.46944984333683, -34.54892595100984],
     [-58.47007981448945, -34.54760785729351],
     [-58.47108892557325, -34.54794385591892],
     [-58.47129502150347, -34.54751573350573],
     [-58.4714983918735, -34.54708845600031],
     [-58.47045379631131, -34.54672887089319]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 759.0,
   'VIVIEND': 401.0,
   'HOGARES': 327.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.023841073008269,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.469819183838055, -34.54936692562133],
     [-58.46929539082745, -34.54926307952283],
     [-58.46790905642405, -34.54898821092722],
     [-58.46762641864798, -34.549342878322555],
     [-58.46758982278291, -34.54938858501972],
     [-58.467773504719915, -34.54952435514461],
     [-58.468703145934214, -34.55003002824213],
     [-58.46955781017968, -34.550502810415225],
     [-58.46963985123008, -34.55039554992942],
     [-58.47024834366168, -34.54959458088207],
     [-58.471113308791885, -34.55004601307075],
     [-58.47139269854275, -34.54967880239219],
     [-58.4703527663199, -34.54947267030788],
     [-58.469819183838055, -34.54936692562133]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 997.0,
   'VIVIEND': 499.0,
   'HOGARES': 421.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.0112862360515,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471113308791885, -34.55004601307075],
     [-58.47024834366168, -34.54959458088207],
     [-58.46963985123008, -34.55039554992942],
     [-58.46955781017968, -34.550502810415225],
     [-58.47040805791541, -34.550973192429424],
     [-58.470469588206576, -34.550892271285846],
     [-58.471113308791885, -34.55004601307075]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_5_9',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 769.0,
   'VIVIEND': 352.0,
   'HOGARES': 311.0,
   'HOGARES_': 9.0,
   'AREA_KM': 0.024707636827409,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47430983142446, -34.550633017258136],
     [-58.47341564616263, -34.550159849290296],
     [-58.47350270938003, -34.55009709377393],
     [-58.47245297847905, -34.54988900858459],
     [-58.47139269854275, -34.54967880239219],
     [-58.471113308791885, -34.55004601307075],
     [-58.471985688616705, -34.55050131185757],
     [-58.47282964789268, -34.55094174726126],
     [-58.473100925449565, -34.55108334723451],
     [-58.473722219914194, -34.551406539142434],
     [-58.47430983142446, -34.550633017258136]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_1',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 789.0,
   'VIVIEND': 386.0,
   'HOGARES': 320.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.038338323697776,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48324976050455, -34.55531630581556],
     [-58.482706889205346, -34.55610028554923],
     [-58.48361421470691, -34.55657619970106],
     [-58.48448468744669, -34.557029789248304],
     [-58.48502856759841, -34.556238547875886],
     [-58.485679235249435, -34.55535031007235],
     [-58.485356548389106, -34.55534755341892],
     [-58.48475978105642, -34.555032374418076],
     [-58.48388592088903, -34.55457082935318],
     [-58.48353985819179, -34.55502413785735],
     [-58.4833518904463, -34.55526445651399],
     [-58.48324976050455, -34.55531630581556]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_10',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 774.0,
   'VIVIEND': 353.0,
   'HOGARES': 316.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.061944340373456,
   'partidas': 1.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48184638382806, -34.55894280583502],
     [-58.4828076329412, -34.55947977485711],
     [-58.48374764829524, -34.55812726499598],
     [-58.48448468744669, -34.557029789248304],
     [-58.48361421470691, -34.55657619970106],
     [-58.482706889205346, -34.55610028554923],
     [-58.482232662697264, -34.55672460062246],
     [-58.48185816080926, -34.557217416604544],
     [-58.48174626040931, -34.557364761087],
     [-58.480936311661154, -34.558434272845574],
     [-58.48184638382806, -34.55894280583502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_2',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 870.0,
   'VIVIEND': 478.0,
   'HOGARES': 353.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.060576989036158,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48211659783344, -34.555794881542],
     [-58.482398206789135, -34.55593836054519],
     [-58.482706889205346, -34.55610028554923],
     [-58.48324976050455, -34.55531630581556],
     [-58.4833518904463, -34.55526445651399],
     [-58.48353985819179, -34.55502413785735],
     [-58.48388592088903, -34.55457082935318],
     [-58.48447210015648, -34.55380296357007],
     [-58.4835415602962, -34.553316355083524],
     [-58.482612904383835, -34.55283206314985],
     [-58.48247718600567, -34.55301096225669],
     [-58.48203420350501, -34.55359280612107],
     [-58.48143966468143, -34.55437376038098],
     [-58.4808565174242, -34.5551397800638],
     [-58.48178586888367, -34.55562021174076],
     [-58.48211659783344, -34.555794881542]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_3',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 686.0,
   'VIVIEND': 305.0,
   'HOGARES': 257.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.057045322105914,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47958687645507, -34.553409080724684],
     [-58.47900448499986, -34.554175091580696],
     [-58.479929900360105, -34.55465898876704],
     [-58.48022716602402, -34.55481437225362],
     [-58.4808565174242, -34.5551397800638],
     [-58.48143966468143, -34.55437376038098],
     [-58.48203420350501, -34.55359280612107],
     [-58.48247718600567, -34.55301096225669],
     [-58.482612904383835, -34.55283206314985],
     [-58.48168042856593, -34.552345792833016],
     [-58.48145978222277, -34.552230683624906],
     [-58.48106793922657, -34.55236828135504],
     [-58.480663148826935, -34.552474161687016],
     [-58.480336723164086, -34.55255754941997],
     [-58.480186786890954, -34.552619960670974],
     [-58.48018678634939, -34.552619965403345],
     [-58.47958687645507, -34.553409080724684]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_4',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 950.0,
   'VIVIEND': 354.0,
   'HOGARES': 349.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.064176582717538,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477148322309084, -34.553197135615555],
     [-58.47807431273523, -34.553685483592965],
     [-58.478801288343675, -34.55406884869846],
     [-58.47900448499986, -34.554175091580696],
     [-58.47958687645507, -34.553409080724684],
     [-58.48018678634939, -34.552619965403345],
     [-58.480186786890954, -34.552619960670974],
     [-58.47998568313655, -34.55257473441723],
     [-58.47987124956406, -34.55256655834139],
     [-58.47950618308492, -34.55255034118392],
     [-58.47908501815122, -34.55249807336757],
     [-58.4789898549313, -34.55248048009101],
     [-58.478775014326274, -34.5524407894065],
     [-58.478617713569214, -34.552407569867626],
     [-58.47833638839809, -34.55231781556643],
     [-58.478085874835735, -34.552223056629785],
     [-58.47794303795839, -34.552154270254775],
     [-58.47785221154826, -34.552110618652485],
     [-58.477620591185556, -34.55199550386247],
     [-58.477418163335976, -34.55186489182489],
     [-58.47714235427126, -34.55166224434806],
     [-58.477064717239514, -34.551592815393],
     [-58.47698052547554, -34.551517541958276],
     [-58.4768484889967, -34.55138185018069],
     [-58.47670639572146, -34.55116453793124],
     [-58.47660703461864, -34.550970953556494],
     [-58.47654334375362, -34.550818844827006],
     [-58.476500179019546, -34.55074772141249],
     [-58.47644161223638, -34.550698219903055],
     [-58.47586091139001, -34.55145315934162],
     [-58.47566969648593, -34.55170170627884],
     [-58.47527875429514, -34.55221612441677],
     [-58.47595692786653, -34.55256887711491],
     [-58.47621825677768, -34.55270666830475],
     [-58.477148322309084, -34.553197135615555]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_5',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 1001.0,
   'VIVIEND': 475.0,
   'HOGARES': 387.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.07179773871994,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477148322309084, -34.553197135615555],
     [-58.47621825677768, -34.55270666830475],
     [-58.475518231340885, -34.55362796057341],
     [-58.47542623808866, -34.553749381218466],
     [-58.47634133249056, -34.55425612409957],
     [-58.47725533133812, -34.55476222639285],
     [-58.47817215046462, -34.55526987077105],
     [-58.479084468914245, -34.555775043984625],
     [-58.479990754176306, -34.556276830840076],
     [-58.4800751701237, -34.55616604190908],
     [-58.4808565174242, -34.5551397800638],
     [-58.48022716602402, -34.55481437225362],
     [-58.479929900360105, -34.55465898876704],
     [-58.47900448499986, -34.554175091580696],
     [-58.478801288343675, -34.55406884869846],
     [-58.47807431273523, -34.553685483592965],
     [-58.477148322309084, -34.553197135615555]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_6',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 983.0,
   'VIVIEND': 425.0,
   'HOGARES': 380.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.054374104130581,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47365230118026, -34.554354213889624],
     [-58.474576330457545, -34.5548719552935],
     [-58.475480536745, -34.555378564742284],
     [-58.47569541953221, -34.55510360673023],
     [-58.47634133249056, -34.55425612409957],
     [-58.47542623808866, -34.553749381218466],
     [-58.475518231340885, -34.55362796057341],
     [-58.47621825677768, -34.55270666830475],
     [-58.47595692786653, -34.55256887711491],
     [-58.47527875429514, -34.55221612441677],
     [-58.47457412710396, -34.55314304574438],
     [-58.47450204659276, -34.55323777305671],
     [-58.47383621354783, -34.55286944747949],
     [-58.47298646254138, -34.55398229212199],
     [-58.47332934053781, -34.554173252701545],
     [-58.47365230118026, -34.554354213889624]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_7',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 736.0,
   'VIVIEND': 401.0,
   'HOGARES': 332.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.029939083885252,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47725533133812, -34.55476222639285],
     [-58.47634133249056, -34.55425612409957],
     [-58.47569541953221, -34.55510360673023],
     [-58.475480536745, -34.555378564742284],
     [-58.47639071291494, -34.555888547133826],
     [-58.47731017917734, -34.55640366253616],
     [-58.47817215046462, -34.55526987077105],
     [-58.47725533133812, -34.55476222639285]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_8',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 733.0,
   'VIVIEND': 314.0,
   'HOGARES': 288.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.029929091897666,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47875439658786, -34.55721272323959],
     [-58.479121308038536, -34.557418312474155],
     [-58.479537780541555, -34.55687148392017],
     [-58.479990754176306, -34.556276830840076],
     [-58.479084468914245, -34.555775043984625],
     [-58.47817215046462, -34.55526987077105],
     [-58.47731017917734, -34.55640366253616],
     [-58.47821697248401, -34.55691165975722],
     [-58.47875439658786, -34.55721272323959]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_6_9',
   'BARRIO': 'SAAVEDRA',
   'COMUNA': '12',
   'POBLACI': 725.0,
   'VIVIEND': 369.0,
   'HOGARES': 302.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.060670239763692,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48211659783344, -34.555794881542],
     [-58.48178586888367, -34.55562021174076],
     [-58.4808565174242, -34.5551397800638],
     [-58.4800751701237, -34.55616604190908],
     [-58.479990754176306, -34.556276830840076],
     [-58.479537780541555, -34.55687148392017],
     [-58.479121308038536, -34.557418312474155],
     [-58.47992579535993, -34.55786898551537],
     [-58.48002837876995, -34.55792650738791],
     [-58.480205537672894, -34.55802585034526],
     [-58.480936311661154, -34.558434272845574],
     [-58.48174626040931, -34.557364761087],
     [-58.48185816080926, -34.557217416604544],
     [-58.482232662697264, -34.55672460062246],
     [-58.482706889205346, -34.55610028554923],
     [-58.482398206789135, -34.55593836054519],
     [-58.48211659783344, -34.555794881542]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_1',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 836.0,
   'VIVIEND': 385.0,
   'HOGARES': 318.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.059067507344276,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47821697248401, -34.55691165975722],
     [-58.47731017917734, -34.55640366253616],
     [-58.47639071291494, -34.555888547133826],
     [-58.475480536745, -34.555378564742284],
     [-58.47501306605016, -34.555976653419584],
     [-58.47489179396431, -34.55613702103578],
     [-58.47438057385126, -34.55681328220832],
     [-58.47530309877733, -34.55730531328817],
     [-58.4762433413641, -34.557806772205176],
     [-58.47643947848901, -34.55791132989755],
     [-58.476757945835836, -34.55807432514847],
     [-58.47701478073864, -34.55820577686579],
     [-58.4771667375159, -34.558287662035546],
     [-58.477514547156105, -34.557814230361906],
     [-58.47763709660786, -34.55767146602397],
     [-58.47875439658786, -34.55721272323959],
     [-58.47821697248401, -34.55691165975722]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_10',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 1092.0,
   'VIVIEND': 616.0,
   'HOGARES': 476.0,
   'HOGARES_': 11.0,
   'AREA_KM': 0.055279090750635,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.468852124445476, -34.563153320716914],
     [-58.46816401004161, -34.56394590416731],
     [-58.46801079135625, -34.56412323832678],
     [-58.46901126413296, -34.564775668157125],
     [-58.46983952643481, -34.565315773803384],
     [-58.47082317895518, -34.56428794594572],
     [-58.471595375191306, -34.56348104540071],
     [-58.47061661459287, -34.562929552680686],
     [-58.47037875822585, -34.56279555115262],
     [-58.469560569033725, -34.56233749224858],
     [-58.468852124445476, -34.563153320716914]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_2',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 836.0,
   'VIVIEND': 338.0,
   'HOGARES': 310.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.052852549381316,
   'partidas': 16.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.474576330457545, -34.5548719552935],
     [-58.47365230118026, -34.554354213889624],
     [-58.47332934053781, -34.554173252701545],
     [-58.47298646254138, -34.55398229212199],
     [-58.47238400643071, -34.55477123125142],
     [-58.4721433271913, -34.555086467983685],
     [-58.47184979414572, -34.555465089803626],
     [-58.47231729691845, -34.555713580186165],
     [-58.472534790541914, -34.555829480768686],
     [-58.473472786588346, -34.55632934157681],
     [-58.47392965831762, -34.55657282658321],
     [-58.47438057385126, -34.55681328220832],
     [-58.47489179396431, -34.55613702103578],
     [-58.47501306605016, -34.555976653419584],
     [-58.475480536745, -34.555378564742284],
     [-58.474576330457545, -34.5548719552935]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_3',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 879.0,
   'VIVIEND': 379.0,
   'HOGARES': 325.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.063151022102356,
   'partidas': 23.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.473472786588346, -34.55632934157681],
     [-58.472534790541914, -34.555829480768686],
     [-58.47231729691845, -34.555713580186165],
     [-58.47184979414572, -34.555465089803626],
     [-58.47125029423028, -34.55623852964699],
     [-58.47095632692127, -34.556611374510624],
     [-58.47027246402894, -34.55747854940574],
     [-58.469468824033065, -34.55839277026058],
     [-58.469050059515276, -34.558869140490536],
     [-58.46858464498934, -34.55937685016722],
     [-58.46950120413763, -34.55985279808173],
     [-58.46962445216814, -34.55972102793143],
     [-58.47025225529602, -34.55897484883965],
     [-58.47035490311801, -34.558864135971774],
     [-58.47046206169414, -34.55874842262716],
     [-58.471311170080774, -34.55803743568939],
     [-58.47118995010605, -34.55797223157658],
     [-58.4721820471669, -34.557257425569986],
     [-58.473472786588346, -34.55632934157681]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_4',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 944.0,
   'VIVIEND': 404.0,
   'HOGARES': 359.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.081613571951397,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47035490311801, -34.558864135971774],
     [-58.47025225529602, -34.55897484883965],
     [-58.46962445216814, -34.55972102793143],
     [-58.46950120413763, -34.55985279808173],
     [-58.470828773486616, -34.560542096967126],
     [-58.47167061736379, -34.560213158169],
     [-58.472034301097416, -34.559757417499455],
     [-58.472766422832336, -34.55884015765139],
     [-58.47285280907967, -34.558731979283756],
     [-58.473444748123256, -34.55805114008406],
     [-58.473521685014255, -34.557949441066405],
     [-58.47438057385126, -34.55681328220832],
     [-58.47392965831762, -34.55657282658321],
     [-58.473472786588346, -34.55632934157681],
     [-58.4721820471669, -34.557257425569986],
     [-58.47118995010605, -34.55797223157658],
     [-58.471311170080774, -34.55803743568939],
     [-58.47046206169414, -34.55874842262716],
     [-58.47035490311801, -34.558864135971774]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_5',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 745.0,
   'VIVIEND': 353.0,
   'HOGARES': 290.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.058001794535279,
   'partidas': 22.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47530309877733, -34.55730531328817],
     [-58.47438057385126, -34.55681328220832],
     [-58.473521685014255, -34.557949441066405],
     [-58.473444748123256, -34.55805114008406],
     [-58.47285280907967, -34.558731979283756],
     [-58.472766422832336, -34.55884015765139],
     [-58.472034301097416, -34.559757417499455],
     [-58.47167061736379, -34.560213158169],
     [-58.47235370404898, -34.55992732566553],
     [-58.47372454594728, -34.559361564344805],
     [-58.47505927552498, -34.55878353747153],
     [-58.47571058987125, -34.55850747826511],
     [-58.47606365287336, -34.558357789190254],
     [-58.476757945835836, -34.55807432514847],
     [-58.47643947848901, -34.55791132989755],
     [-58.4762433413641, -34.557806772205176],
     [-58.47530309877733, -34.55730531328817]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_6',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 908.0,
   'VIVIEND': 440.0,
   'HOGARES': 347.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.076734968047693,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47397500055502, -34.5607900209257],
     [-58.47489186318496, -34.56127902707943],
     [-58.47558429996574, -34.56036774055727],
     [-58.47629638088284, -34.5594305317694],
     [-58.47671313697071, -34.55888195239755],
     [-58.4771667375159, -34.558287662035546],
     [-58.47701478073864, -34.55820577686579],
     [-58.476757945835836, -34.55807432514847],
     [-58.47606365287336, -34.558357789190254],
     [-58.47571058987125, -34.55850747826511],
     [-58.47505927552498, -34.55878353747153],
     [-58.47372454594728, -34.559361564344805],
     [-58.47235370404898, -34.55992732566553],
     [-58.47167061736379, -34.560213158169],
     [-58.470828773486616, -34.560542096967126],
     [-58.47100261062914, -34.56067645415888],
     [-58.47209958568061, -34.56122525883678],
     [-58.47295326911562, -34.56024622686476],
     [-58.47373799713452, -34.560663561178636],
     [-58.47397500055502, -34.5607900209257]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_7',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 822.0,
   'VIVIEND': 386.0,
   'HOGARES': 301.0,
   'HOGARES_': 10.0,
   'AREA_KM': 0.069147704948485,
   'partidas': 25.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47397500055502, -34.5607900209257],
     [-58.47373799713452, -34.560663561178636],
     [-58.47295326911562, -34.56024622686476],
     [-58.47209958568061, -34.56122525883678],
     [-58.47100261062914, -34.56067645415888],
     [-58.47032798538632, -34.561453485519365],
     [-58.469560569033725, -34.56233749224858],
     [-58.47037875822585, -34.56279555115262],
     [-58.47061661459287, -34.562929552680686],
     [-58.471595375191306, -34.56348104540071],
     [-58.47252144624884, -34.56251334976562],
     [-58.47321836866175, -34.56178503786352],
     [-58.47397500055502, -34.5607900209257]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_8',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 874.0,
   'VIVIEND': 445.0,
   'HOGARES': 365.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.06025616904816,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46786531885658, -34.56017246215623],
     [-58.4671390846534, -34.56098180272349],
     [-58.46808919612276, -34.56151374691734],
     [-58.468292482899, -34.56162754285419],
     [-58.468427837191555, -34.561699298567994],
     [-58.469560569033725, -34.56233749224858],
     [-58.47032798538632, -34.561453485519365],
     [-58.47100261062914, -34.56067645415888],
     [-58.470828773486616, -34.560542096967126],
     [-58.46950120413763, -34.55985279808173],
     [-58.46858464498934, -34.55937685016722],
     [-58.46833040097865, -34.559654191709534],
     [-58.46786531885658, -34.56017246215623]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_7_9',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 1237.0,
   'VIVIEND': 750.0,
   'HOGARES': 557.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.057572389507353,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.468292482899, -34.56162754285419],
     [-58.46808919612276, -34.56151374691734],
     [-58.4671390846534, -34.56098180272349],
     [-58.4664376918039, -34.56176339107553],
     [-58.46708440999318, -34.56213563046318],
     [-58.4663142898972, -34.5624595353333],
     [-58.465890708561254, -34.56263849433054],
     [-58.46597634822737, -34.56270187359285],
     [-58.46694095269831, -34.56341601285075],
     [-58.4670494089523, -34.5634963627205],
     [-58.46801079135625, -34.56412323832678],
     [-58.46816401004161, -34.56394590416731],
     [-58.468852124445476, -34.563153320716914],
     [-58.469560569033725, -34.56233749224858],
     [-58.468427837191555, -34.561699298567994],
     [-58.468292482899, -34.56162754285419]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_1',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 1465.0,
   'VIVIEND': 586.0,
   'HOGARES': 548.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.122095512917161,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.479121308038536, -34.557418312474155],
     [-58.47875439658786, -34.55721272323959],
     [-58.47763709660786, -34.55767146602397],
     [-58.477514547156105, -34.557814230361906],
     [-58.4771667375159, -34.558287662035546],
     [-58.47808546520253, -34.55878291192017],
     [-58.47900445917382, -34.55927829566161],
     [-58.47911325788472, -34.559336944242716],
     [-58.479921080813725, -34.5597747995613],
     [-58.47946554467739, -34.56042262247601],
     [-58.479134759215, -34.56089119796166],
     [-58.48007548775011, -34.56137811966421],
     [-58.48113098064727, -34.56192262308393],
     [-58.48124328344698, -34.561982359176916],
     [-58.4813254172488, -34.561863997971656],
     [-58.481516223907704, -34.561593870538346],
     [-58.4816819232196, -34.56135837467457],
     [-58.48183088437572, -34.56114642822357],
     [-58.48196310762935, -34.560958031249],
     [-58.48200275208427, -34.56090170330213],
     [-58.48206353004878, -34.56081534810224],
     [-58.48223424773108, -34.56057431018668],
     [-58.482398270320154, -34.560345462152],
     [-58.48262294508378, -34.56002673747107],
     [-58.482715492226625, -34.55989481465783],
     [-58.48280889577316, -34.55976076408732],
     [-58.48295618329801, -34.55955107989055],
     [-58.48290494004738, -34.55952644987609],
     [-58.4828076329412, -34.55947977485711],
     [-58.48184638382806, -34.55894280583502],
     [-58.480936311661154, -34.558434272845574],
     [-58.480205537672894, -34.55802585034526],
     [-58.48002837876995, -34.55792650738791],
     [-58.47992579535993, -34.55786898551537],
     [-58.479121308038536, -34.557418312474155]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_10',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 731.0,
   'VIVIEND': 324.0,
   'HOGARES': 290.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.023643432185352,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47845493073604, -34.56438029997385],
     [-58.4784050418416, -34.564360235589966],
     [-58.47824254239057, -34.56441525745444],
     [-58.478177934513305, -34.564439280213435],
     [-58.477421792809935, -34.5647377598043],
     [-58.47679784443292, -34.564998331447754],
     [-58.47670343924323, -34.56503910705234],
     [-58.47627876640575, -34.565229380660746],
     [-58.476377207188925, -34.56542233113385],
     [-58.476062588279426, -34.565540044297244],
     [-58.47595439576917, -34.565583718903135],
     [-58.47565484467666, -34.5657084717645],
     [-58.47550774973526, -34.56576665741617],
     [-58.47657759625181, -34.56641591910477],
     [-58.47754818301133, -34.56555107004185],
     [-58.4785183241004, -34.56468656531883],
     [-58.47871195839695, -34.564514071944906],
     [-58.47845493073604, -34.56438029997385]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_11',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 642.0,
   'VIVIEND': 300.0,
   'HOGARES': 262.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.016876607900918,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47550774973526, -34.56576665741617],
     [-58.47520887738734, -34.56588493011097],
     [-58.474523778860146, -34.56666684431133],
     [-58.47559030624498, -34.567297311704166],
     [-58.47575611840302, -34.5671478546317],
     [-58.47657759625181, -34.56641591910477],
     [-58.47550774973526, -34.56576665741617]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_2',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 745.0,
   'VIVIEND': 325.0,
   'HOGARES': 273.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.057822814874768,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47819072148707, -34.5604025792147],
     [-58.478108938030815, -34.560515620000466],
     [-58.47747781154466, -34.561392123985556],
     [-58.477987676548565, -34.56166798218168],
     [-58.47841947707603, -34.56190363624763],
     [-58.479134759215, -34.56089119796166],
     [-58.47946554467739, -34.56042262247601],
     [-58.479921080813725, -34.5597747995613],
     [-58.47911325788472, -34.559336944242716],
     [-58.47900445917382, -34.55927829566161],
     [-58.47808546520253, -34.55878291192017],
     [-58.4771667375159, -34.558287662035546],
     [-58.47671313697071, -34.55888195239755],
     [-58.47629638088284, -34.5594305317694],
     [-58.47725112235572, -34.55992043160175],
     [-58.47819072148707, -34.5604025792147]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_3',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 868.0,
   'VIVIEND': 384.0,
   'HOGARES': 325.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.088025462557763,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47587207535977, -34.56180238636724],
     [-58.475180403357015, -34.562763111821944],
     [-58.476137813230494, -34.5632400618146],
     [-58.476312508095035, -34.56332715684331],
     [-58.477124010575054, -34.56373693082852],
     [-58.477773197714384, -34.562818242851506],
     [-58.47841947707603, -34.56190363624763],
     [-58.477987676548565, -34.56166798218168],
     [-58.47747781154466, -34.561392123985556],
     [-58.478108938030815, -34.560515620000466],
     [-58.47819072148707, -34.5604025792147],
     [-58.47725112235572, -34.55992043160175],
     [-58.47629638088284, -34.5594305317694],
     [-58.47558429996574, -34.56036774055727],
     [-58.47489186318496, -34.56127902707943],
     [-58.47552005223072, -34.5616140398191],
     [-58.47587207535977, -34.56180238636724]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_4',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 769.0,
   'VIVIEND': 316.0,
   'HOGARES': 262.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.088577254231155,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.48113098064727, -34.56192262308393],
     [-58.48007548775011, -34.56137811966421],
     [-58.479134759215, -34.56089119796166],
     [-58.47841947707603, -34.56190363624763],
     [-58.477773197714384, -34.562818242851506],
     [-58.477124010575054, -34.56373693082852],
     [-58.476225823512635, -34.56474916599585],
     [-58.47650699557444, -34.56491837706654],
     [-58.47670343924323, -34.56503910705234],
     [-58.47679784443292, -34.564998331447754],
     [-58.477421792809935, -34.5647377598043],
     [-58.478177934513305, -34.564439280213435],
     [-58.47824254239057, -34.56441525745444],
     [-58.4784050418416, -34.564360235589966],
     [-58.47845493073604, -34.56438029997385],
     [-58.478941492071755, -34.56421861335316],
     [-58.47912160836348, -34.56414422161438],
     [-58.47931014860597, -34.564052785877905],
     [-58.4794681263944, -34.56395550886638],
     [-58.47977259547754, -34.56376907164027],
     [-58.47962152980041, -34.56368024622689],
     [-58.47954168993164, -34.56374087929835],
     [-58.4797988206389, -34.563541599983466],
     [-58.480061645255184, -34.563339335594335],
     [-58.48038640720607, -34.563087197408365],
     [-58.48055380886105, -34.56295420166062],
     [-58.48065423578756, -34.562810134599964],
     [-58.48080989810029, -34.56259264798428],
     [-58.48099736073166, -34.562328062364635],
     [-58.481183149121485, -34.56206901717432],
     [-58.48124328344698, -34.561982359176916],
     [-58.48113098064727, -34.56192262308393]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_5',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 602.0,
   'VIVIEND': 441.0,
   'HOGARES': 344.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.014029844226956,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.477124010575054, -34.56373693082852],
     [-58.476312508095035, -34.56332715684331],
     [-58.476137813230494, -34.5632400618146],
     [-58.47603985345794, -34.56337437096375],
     [-58.47531367249907, -34.56419615432968],
     [-58.476225823512635, -34.56474916599585],
     [-58.477124010575054, -34.56373693082852]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_6',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 836.0,
   'VIVIEND': 416.0,
   'HOGARES': 352.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.050151760036379,
   'partidas': 26.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47489186318496, -34.56127902707943],
     [-58.47397500055502, -34.5607900209257],
     [-58.47321836866175, -34.56178503786352],
     [-58.47252144624884, -34.56251334976562],
     [-58.473416617908946, -34.56304877796414],
     [-58.473818533784545, -34.56328973266401],
     [-58.474399745745345, -34.56364215003173],
     [-58.475180403357015, -34.562763111821944],
     [-58.47587207535977, -34.56180238636724],
     [-58.47552005223072, -34.5616140398191],
     [-58.47489186318496, -34.56127902707943]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_7',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 871.0,
   'VIVIEND': 440.0,
   'HOGARES': 364.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.055391786500335,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.474399745745345, -34.56364215003173],
     [-58.473818533784545, -34.56328973266401],
     [-58.473416617908946, -34.56304877796414],
     [-58.47252144624884, -34.56251334976562],
     [-58.471595375191306, -34.56348104540071],
     [-58.47253073062709, -34.56400802620587],
     [-58.47355983104374, -34.56458780941966],
     [-58.47447580600915, -34.565144214133525],
     [-58.47531367249907, -34.56419615432968],
     [-58.47603985345794, -34.56337437096375],
     [-58.476137813230494, -34.5632400618146],
     [-58.475180403357015, -34.562763111821944],
     [-58.474399745745345, -34.56364215003173]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_8',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 927.0,
   'VIVIEND': 504.0,
   'HOGARES': 415.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.058955961731434,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47253073062709, -34.56400802620587],
     [-58.471595375191306, -34.56348104540071],
     [-58.47082317895518, -34.56428794594572],
     [-58.46983952643481, -34.565315773803384],
     [-58.47005014803264, -34.56545308789166],
     [-58.47077157682931, -34.565900163586996],
     [-58.4718207863077, -34.566545876697624],
     [-58.47272211041427, -34.56553113871492],
     [-58.47355983104374, -34.56458780941966],
     [-58.47253073062709, -34.56400802620587]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_8_9',
   'BARRIO': 'COGHLAN',
   'COMUNA': '12',
   'POBLACI': 975.0,
   'VIVIEND': 473.0,
   'HOGARES': 396.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.070637438566864,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.472142090622484, -34.56674205318855],
     [-58.47240234646924, -34.56689571237741],
     [-58.472662986231896, -34.56694497314531],
     [-58.47294063470874, -34.566996388374136],
     [-58.47303173891319, -34.56701910920641],
     [-58.47339181805889, -34.56710999223467],
     [-58.47399643397075, -34.567261035881565],
     [-58.474065846827806, -34.56718281310049],
     [-58.474523778860146, -34.56666684431133],
     [-58.47520887738734, -34.56588493011097],
     [-58.47550774973526, -34.56576665741617],
     [-58.47565484467666, -34.5657084717645],
     [-58.47595439576917, -34.565583718903135],
     [-58.476062588279426, -34.565540044297244],
     [-58.476377207188925, -34.56542233113385],
     [-58.47627876640575, -34.565229380660746],
     [-58.47670343924323, -34.56503910705234],
     [-58.47650699557444, -34.56491837706654],
     [-58.476225823512635, -34.56474916599585],
     [-58.47531367249907, -34.56419615432968],
     [-58.47447580600915, -34.565144214133525],
     [-58.47355983104374, -34.56458780941966],
     [-58.47272211041427, -34.56553113871492],
     [-58.4718207863077, -34.566545876697624],
     [-58.47186071580261, -34.566576296822845],
     [-58.472142090622484, -34.56674205318855]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_1',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 937.0,
   'VIVIEND': 403.0,
   'HOGARES': 331.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.077246967023943,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49599245776123, -34.56398409327782],
     [-58.494816711114034, -34.56341953809857],
     [-58.493855268321035, -34.56474622145805],
     [-58.49503281418706, -34.56530902469629],
     [-58.49635665691334, -34.565941707186205],
     [-58.49750903283773, -34.56649238044843],
     [-58.49807867012508, -34.566764616227964],
     [-58.49911202568153, -34.56548935849296],
     [-58.49853898594068, -34.56521100159702],
     [-58.4984520512727, -34.56516912487425],
     [-58.49818630927084, -34.565041030931894],
     [-58.49739036531341, -34.56465730864304],
     [-58.49725983733494, -34.56459438670212],
     [-58.4962221767859, -34.564094384670064],
     [-58.49607581386432, -34.564024141718036],
     [-58.49599245776123, -34.56398409327782]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_2',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1127.0,
   'VIVIEND': 466.0,
   'HOGARES': 420.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.081309669395804,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49503281418706, -34.56530902469629],
     [-58.493855268321035, -34.56474622145805],
     [-58.4929782016322, -34.565956324543265],
     [-58.49287635044374, -34.56609247912375],
     [-58.49404438098569, -34.56667367475058],
     [-58.49523663531893, -34.56733267105821],
     [-58.496342480330966, -34.567943791265954],
     [-58.49688634031397, -34.56824442045678],
     [-58.497464684679805, -34.567526638010555],
     [-58.49807867012508, -34.566764616227964],
     [-58.49750903283773, -34.56649238044843],
     [-58.49635665691334, -34.565941707186205],
     [-58.49503281418706, -34.56530902469629]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_3',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1005.0,
   'VIVIEND': 455.0,
   'HOGARES': 385.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.084233462764978,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.492283235989696, -34.56220578827482],
     [-58.49132966887414, -34.56175002068916],
     [-58.491233609987326, -34.56189004595042],
     [-58.490390841025985, -34.56309899621491],
     [-58.491335904943924, -34.563552589883344],
     [-58.491494353141455, -34.563628610435565],
     [-58.49272303419641, -34.56420508623119],
     [-58.49175567651039, -34.56553555723955],
     [-58.49287635044374, -34.56609247912375],
     [-58.4929782016322, -34.565956324543265],
     [-58.493855268321035, -34.56474622145805],
     [-58.494816711114034, -34.56341953809857],
     [-58.49368823404028, -34.56287763605033],
     [-58.49352901895239, -34.56280112556255],
     [-58.492283235989696, -34.56220578827482]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_4',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 1061.0,
   'VIVIEND': 468.0,
   'HOGARES': 392.0,
   'HOGARES_': 8.0,
   'AREA_KM': 0.074713817730099,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.49038744010086, -34.564909665995394],
     [-58.49030686338583, -34.56503130630754],
     [-58.48975588805245, -34.56575390833562],
     [-58.49101656813515, -34.56649539714573],
     [-58.4920852602598, -34.56712402974679],
     [-58.493220277044145, -34.56772812885485],
     [-58.49404438098569, -34.56667367475058],
     [-58.49287635044374, -34.56609247912375],
     [-58.49175567651039, -34.56553555723955],
     [-58.49272303419641, -34.56420508623119],
     [-58.491494353141455, -34.563628610435565],
     [-58.491335904943924, -34.563552589883344],
     [-58.490486990773505, -34.56475949963265],
     [-58.49038744010086, -34.564909665995394]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_5',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 965.0,
   'VIVIEND': 456.0,
   'HOGARES': 358.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.078290340782851,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485200989678276, -34.56307872463923],
     [-58.484783474679055, -34.56352296450271],
     [-58.48575515822558, -34.56397751204053],
     [-58.48672761861764, -34.56443247419849],
     [-58.48692948506894, -34.56452687274944],
     [-58.48770978773477, -34.56486559517745],
     [-58.48868966615757, -34.56529103250488],
     [-58.48975588805245, -34.56575390833562],
     [-58.49030686338583, -34.56503130630754],
     [-58.49038744010086, -34.564909665995394],
     [-58.490486990773505, -34.56475949963265],
     [-58.491335904943924, -34.563552589883344],
     [-58.490390841025985, -34.56309899621491],
     [-58.489864661728724, -34.56385370663512],
     [-58.48944287762003, -34.56445881151077],
     [-58.48849151408393, -34.56400464119524],
     [-58.48753888381024, -34.563549900295754],
     [-58.486584646251, -34.5630943071536],
     [-58.48577668559201, -34.56270860990691],
     [-58.485620883062914, -34.56263187718464],
     [-58.485200989678276, -34.56307872463923]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_6',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 960.0,
   'VIVIEND': 452.0,
   'HOGARES': 377.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.070539212996423,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.489442977743366, -34.56264398732878],
     [-58.48867647008432, -34.562275835716605],
     [-58.48848610062571, -34.56218636726555],
     [-58.48769184890206, -34.56181307435154],
     [-58.48753076819143, -34.561735288776816],
     [-58.48671966502531, -34.561343823559],
     [-58.48657425182323, -34.561275470439796],
     [-58.485620883062914, -34.56263187718464],
     [-58.48577668559201, -34.56270860990691],
     [-58.486584646251, -34.5630943071536],
     [-58.48753888381024, -34.563549900295754],
     [-58.48849151408393, -34.56400464119524],
     [-58.48944287762003, -34.56445881151077],
     [-58.489864661728724, -34.56385370663512],
     [-58.490390841025985, -34.56309899621491],
     [-58.48991780208504, -34.56287198546476],
     [-58.489800223883975, -34.56281560206368],
     [-58.489442977743366, -34.56264398732878]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '12_9_7',
   'BARRIO': 'VILLA URQUIZA',
   'COMUNA': '12',
   'POBLACI': 879.0,
   'VIVIEND': 369.0,
   'HOGARES': 307.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.11561678122896,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.485200989678276, -34.56307872463923],
     [-58.485620883062914, -34.56263187718464],
     [-58.48657425182323, -34.561275470439796],
     [-58.48578844568521, -34.560905966323624],
     [-58.48565478247546, -34.560842257861445],
     [-58.484700841743624, -34.560387635662146],
     [-58.484565732916955, -34.560323292446824],
     [-58.4844177689648, -34.56025275406122],
     [-58.483749975628115, -34.55993216035532],
     [-58.483100576220615, -34.55962043332506],
     [-58.48302021040084, -34.559581854399305],
     [-58.48295618329801, -34.55955107989055],
     [-58.48280889577316, -34.55976076408732],
     [-58.482715492226625, -34.55989481465783],
     [-58.48262294508378, -34.56002673747107],
     [-58.482398270320154, -34.560345462152],
     [-58.48223424773108, -34.56057431018668],
     [-58.48206353004878, -34.56081534810224],
     [-58.48200275208427, -34.56090170330213],
     [-58.48196310762935, -34.560958031249],
     [-58.48183088437572, -34.56114642822357],
     [-58.4816819232196, -34.56135837467457],
     [-58.481516223907704, -34.561593870538346],
     [-58.4813254172488, -34.561863997971656],
     [-58.48124328344698, -34.561982359176916],
     [-58.48139874592661, -34.56206258047522],
     [-58.482181311598595, -34.56246578108855],
     [-58.48287368987437, -34.56265848933818],
     [-58.48302573598779, -34.56270078889483],
     [-58.484009149298096, -34.56316070065928],
     [-58.484783474679055, -34.56352296450271],
     [-58.485200989678276, -34.56307872463923]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_1',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 733.0,
   'VIVIEND': 393.0,
   'HOGARES': 296.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.089419325062513,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47159399539328, -34.54011638840108],
     [-58.47253461512718, -34.54059238373905],
     [-58.47266347031076, -34.54065758608298],
     [-58.47375636414484, -34.5412087020392],
     [-58.47407766004558, -34.540774577917674],
     [-58.47432773417774, -34.54043665915371],
     [-58.474808343386755, -34.539787176782454],
     [-58.47481179503053, -34.539782512280226],
     [-58.47481163699737, -34.53978243899492],
     [-58.47516146708505, -34.539279212406505],
     [-58.47531276052003, -34.53906157632821],
     [-58.472108714589105, -34.53764654441197],
     [-58.47208411378883, -34.537635679225254],
     [-58.471863789665115, -34.537948625764564],
     [-58.471568175966866, -34.538368508656404],
     [-58.47159980300497, -34.53838253939617],
     [-58.471600448957524, -34.53838282596072],
     [-58.47124979423199, -34.53886680612804],
     [-58.47067040777953, -34.53964890599621],
     [-58.47159399539328, -34.54011638840108]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_10',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 709.0,
   'VIVIEND': 368.0,
   'HOGARES': 314.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.02995972763586,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46974129860087, -34.53917874076851],
     [-58.46880096597099, -34.5387027237874],
     [-58.46823517319467, -34.53946952939475],
     [-58.469172872932326, -34.53994435360052],
     [-58.46984079261713, -34.540282563729],
     [-58.47010275342578, -34.540415297712556],
     [-58.47102702727886, -34.54088391109124],
     [-58.47151902976695, -34.54021639617892],
     [-58.47159399539328, -34.54011638840108],
     [-58.47067040777953, -34.53964890599621],
     [-58.46974129860087, -34.53917874076851]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_11',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 660.0,
   'VIVIEND': 346.0,
   'HOGARES': 300.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.033397535687998,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47045656003167, -34.54165769902591],
     [-58.471393445966946, -34.54213349199685],
     [-58.47196620564801, -34.541359981269274],
     [-58.47318668539634, -34.54197855885988],
     [-58.473756364144826, -34.5412087020392],
     [-58.47266347031076, -34.54065758608297],
     [-58.472534615127195, -34.540592383739046],
     [-58.47159399539328, -34.540116388401074],
     [-58.47151902976695, -34.54021639617893],
     [-58.47102702727884, -34.540883911091235],
     [-58.47055382273558, -34.54152592919214],
     [-58.47045656003167, -34.54165769902591]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_12',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 544.0,
   'VIVIEND': 310.0,
   'HOGARES': 246.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.035123032184362,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47196620564801, -34.541359981269274],
     [-58.471393445966946, -34.54213349199685],
     [-58.47045656003167, -34.54165769902591],
     [-58.46991458928848, -34.54239211541324],
     [-58.470851820589566, -34.5428657997367],
     [-58.472092311173895, -34.54345741432529],
     [-58.472636397251705, -34.54272221356477],
     [-58.47318668539634, -34.54197855885988],
     [-58.47196620564801, -34.541359981269274]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_13',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 622.0,
   'VIVIEND': 306.0,
   'HOGARES': 245.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.044003321801513,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46783807451046, -34.543480132738146],
     [-58.468765773963455, -34.54395031218106],
     [-58.469338229691026, -34.543173292816334],
     [-58.47027563680115, -34.54364810827748],
     [-58.471494350054066, -34.5442654350226],
     [-58.47209231117391, -34.543457414325296],
     [-58.470851820589566, -34.5428657997367],
     [-58.46991458928848, -34.54239211541324],
     [-58.4689880922838, -34.541923845967126],
     [-58.468411642078635, -34.5427039626998],
     [-58.46783807451046, -34.543480132738146]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_14',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 647.0,
   'VIVIEND': 355.0,
   'HOGARES': 283.0,
   'HOGARES_': 28.0,
   'AREA_KM': 0.023218409132004,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.47027563680115, -34.54364810827748],
     [-58.469338229691026, -34.543173292816334],
     [-58.468765773963455, -34.54395031218106],
     [-58.46970310144561, -34.54442534325259],
     [-58.47093747933862, -34.54501802613194],
     [-58.471494350054066, -34.5442654350226],
     [-58.47027563680115, -34.54364810827748]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_2',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 770.0,
   'VIVIEND': 408.0,
   'HOGARES': 343.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.053842053922504,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.471863789665115, -34.537948625764564],
     [-58.47208411378883, -34.537635679225254],
     [-58.46992938024404, -34.53668398958954],
     [-58.46984978321792, -34.536648832512164],
     [-58.46964069930673, -34.53702009644021],
     [-58.469424204487986, -34.53740451581687],
     [-58.46942542555742, -34.537405054528854],
     [-58.46943402923123, -34.53751061995355],
     [-58.46944978408319, -34.53764935478523],
     [-58.46941311994875, -34.53782858642597],
     [-58.46937253371337, -34.53791654848926],
     [-58.469353729575786, -34.53795725470851],
     [-58.46933637076779, -34.53798063649059],
     [-58.46880096597099, -34.5387027237874],
     [-58.46974129860087, -34.53917874076851],
     [-58.47067040777953, -34.53964890599621],
     [-58.47124979423199, -34.53886680612804],
     [-58.471600448957524, -34.53838282596072],
     [-58.47159980300497, -34.53838253939617],
     [-58.471568175966866, -34.538368508656404],
     [-58.471863789665115, -34.537948625764564]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_3',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 612.0,
   'VIVIEND': 314.0,
   'HOGARES': 258.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.067938826027274,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.467299781934145, -34.538995895075516],
     [-58.46823517319467, -34.53946952939475],
     [-58.46880096597099, -34.5387027237874],
     [-58.46933637076779, -34.53798063649059],
     [-58.469353729575786, -34.53795725470851],
     [-58.46937253371337, -34.53791654848926],
     [-58.46941311994875, -34.53782858642597],
     [-58.46944978408319, -34.53764935478523],
     [-58.46943402923123, -34.53751061995355],
     [-58.46942542555742, -34.537405054528854],
     [-58.469424204487986, -34.53740451581687],
     [-58.46964069930673, -34.53702009644021],
     [-58.46984978321792, -34.536648832512164],
     [-58.46794738101907, -34.53580853937077],
     [-58.46785862023334, -34.53576931685356],
     [-58.467786552247034, -34.535948901673144],
     [-58.4677590643679, -34.535935310937965],
     [-58.467672105950555, -34.53615398174912],
     [-58.46750992984124, -34.53656181494972],
     [-58.46746704585194, -34.53654601203043],
     [-58.46733143090981, -34.53687910244969],
     [-58.46696686277062, -34.53777452190275],
     [-58.467017520814494, -34.53780017281202],
     [-58.4669996518905, -34.53784517451343],
     [-58.46667969262474, -34.53858956114255],
     [-58.46665063258797, -34.538667105867745],
     [-58.466873390708294, -34.538780534544166],
     [-58.466873578601664, -34.53878006021574],
     [-58.467299781934145, -34.538995895075516]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_4',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 763.0,
   'VIVIEND': 524.0,
   'HOGARES': 367.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.046146011521697,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46470960081886, -34.53874462120214],
     [-58.465791098358025, -34.539289611479816],
     [-58.465942328719315, -34.53936587696008],
     [-58.46629976826386, -34.539554040388424],
     [-58.46643302428747, -34.539214803049376],
     [-58.46661801538831, -34.53874760312615],
     [-58.466650605691655, -34.538667177638686],
     [-58.46665063258797, -34.538667105867745],
     [-58.46667969262474, -34.53858956114255],
     [-58.4669996518905, -34.53784517451343],
     [-58.467017520814494, -34.53780017281202],
     [-58.46696686277062, -34.53777452190275],
     [-58.46733143090981, -34.53687910244969],
     [-58.46746704585194, -34.53654601203043],
     [-58.46750992984124, -34.53656181494972],
     [-58.467672105950555, -34.53615398174912],
     [-58.4677590643679, -34.535935310937965],
     [-58.467786552247034, -34.535948901673144],
     [-58.46785862023334, -34.53576931685356],
     [-58.466787714156396, -34.53529628311833],
     [-58.466552963334614, -34.53570576207183],
     [-58.466207809516725, -34.536290414359186],
     [-58.46620763512891, -34.53629051474967],
     [-58.46616057847946, -34.53637333498493],
     [-58.465998645024456, -34.53665820546208],
     [-58.46570370567095, -34.537135478024986],
     [-58.46696620350657, -34.53777418808144],
     [-58.466360231184694, -34.538520140952734],
     [-58.465208615261965, -34.53793691676069],
     [-58.46470960081886, -34.53874462120214]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_5',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 835.0,
   'VIVIEND': 674.0,
   'HOGARES': 421.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.012935475143135,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46696620350657, -34.53777418808144],
     [-58.46570370567095, -34.537135478024986],
     [-58.465208615261965, -34.53793691676069],
     [-58.466360231184694, -34.538520140952734],
     [-58.46696620350657, -34.53777418808144]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_6',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 882.0,
   'VIVIEND': 519.0,
   'HOGARES': 386.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.058191354320809,
   'partidas': 17.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.464236021747546, -34.53951091375533],
     [-58.463730265455126, -34.54032903684937],
     [-58.46322483968212, -34.541146735192164],
     [-58.46409316858099, -34.54158511883232],
     [-58.46503418764557, -34.542060185886996],
     [-58.46525035886111, -34.54216933901389],
     [-58.465394516461096, -34.54182024334276],
     [-58.46557083967578, -34.541388961723754],
     [-58.465612026798226, -34.54128578933878],
     [-58.465749032840954, -34.54094324281702],
     [-58.46590416322014, -34.540556610111814],
     [-58.46597011234323, -34.54039223832634],
     [-58.46608235290078, -34.54011251041401],
     [-58.466256710848825, -34.539663621690515],
     [-58.46629976826386, -34.539554040388424],
     [-58.465942328719315, -34.53936587696008],
     [-58.465791098358025, -34.539289611479816],
     [-58.46470960081886, -34.53874462120214],
     [-58.46453378613411, -34.539029137732484],
     [-58.464236021747546, -34.53951091375533]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_7',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 509.0,
   'VIVIEND': 254.0,
   'HOGARES': 185.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.089921068774045,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.46690034267296, -34.54300480559296],
     [-58.46783807451046, -34.543480132738146],
     [-58.468411642078635, -34.5427039626998],
     [-58.4689880922838, -34.541923845967126],
     [-58.46825301289664, -34.54155239413209],
     [-58.46805394593926, -34.54145120349199],
     [-58.46712227814371, -34.5409778495021],
     [-58.46766077527578, -34.54024809347282],
     [-58.46823517319467, -34.53946952939475],
     [-58.467299781934145, -34.538995895075516],
     [-58.466873578601664, -34.53878006021574],
     [-58.466873390708294, -34.538780534544166],
     [-58.46665063258797, -34.538667105867745],
     [-58.466650605691655, -34.538667177638686],
     [-58.46661801538831, -34.53874760312615],
     [-58.46643302428747, -34.539214803049376],
     [-58.46629976826386, -34.539554040388424],
     [-58.466256710848825, -34.539663621690515],
     [-58.46608235290078, -34.54011251041401],
     [-58.46597011234323, -34.54039223832634],
     [-58.46590416322014, -34.540556610111814],
     [-58.465749032840954, -34.54094324281702],
     [-58.465612026798226, -34.54128578933878],
     [-58.46557083967578, -34.541388961723754],
     [-58.465394516461096, -34.54182024334276],
     [-58.46525035886111, -34.54216933901389],
     [-58.4652451619728, -34.54218191336256],
     [-58.465474463521986, -34.54229090915404],
     [-58.46547733924368, -34.542283914171044],
     [-58.46552006302921, -34.54230546298463],
     [-58.465645425979965, -34.542368771344016],
     [-58.46597334506063, -34.54253496400602],
     [-58.46690034267296, -34.54300480559296]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_8',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 538.0,
   'VIVIEND': 302.0,
   'HOGARES': 241.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.028609683622777,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.469529898013604, -34.54119056043079],
     [-58.46879380159084, -34.540821506284814],
     [-58.46859592724622, -34.54072130239495],
     [-58.46766077527578, -34.54024809347282],
     [-58.46712227814371, -34.5409778495021],
     [-58.46805394593926, -34.54145120349199],
     [-58.46825301289664, -34.54155239413209],
     [-58.4689880922838, -34.541923845967126],
     [-58.46991458928848, -34.54239211541324],
     [-58.47045656003167, -34.541657699025926],
     [-58.47017050889339, -34.54151172756134],
     [-58.469529898013604, -34.54119056043079]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_1_9',
   'BARRIO': 'NUÑEZ',
   'COMUNA': '13',
   'POBLACI': 457.0,
   'VIVIEND': 223.0,
   'HOGARES': 217.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.030331389165044,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.469172872932326, -34.53994435360052],
     [-58.46823517319467, -34.53946952939475],
     [-58.46766077527578, -34.54024809347282],
     [-58.46859592724622, -34.54072130239495],
     [-58.46879380159084, -34.540821506284814],
     [-58.469529898013604, -34.54119056043079],
     [-58.47017050889339, -34.54151172756134],
     [-58.47045656003167, -34.541657699025926],
     [-58.4705538227356, -34.54152592919215],
     [-58.47102702727886, -34.54088391109124],
     [-58.47010275342578, -34.540415297712556],
     [-58.46984079261713, -34.540282563729],
     [-58.469172872932326, -34.53994435360052]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 798.0,
   'VIVIEND': 569.0,
   'HOGARES': 415.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.025156757323921,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45622261503322, -34.55424488310035],
     [-58.45517971708353, -34.55367431830126],
     [-58.45444175017045, -34.55453576767953],
     [-58.45493140897635, -34.55481566485497],
     [-58.455264715897165, -34.55500611213828],
     [-58.4553845896212, -34.555073043197886],
     [-58.45560406751769, -34.555199587089696],
     [-58.45579048781201, -34.55507832763641],
     [-58.45604040955168, -34.554912985944355],
     [-58.45629731034452, -34.55474327781344],
     [-58.45659481345408, -34.55454652835167],
     [-58.45667065782616, -34.55449005205865],
     [-58.456767101752064, -34.5544182947087],
     [-58.45698254674831, -34.55425435787016],
     [-58.45716904938973, -34.55411288460239],
     [-58.45722046301028, -34.554074646676476],
     [-58.45762938727635, -34.553764094396236],
     [-58.45766285429427, -34.55369302274325],
     [-58.45751806282192, -34.553617607745906],
     [-58.4569936740929, -34.553345958882254],
     [-58.45622261503322, -34.55424488310035]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_10',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 893.0,
   'VIVIEND': 549.0,
   'HOGARES': 424.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.044195959741414,
   'partidas': 24.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45106549664624, -34.556667368097365],
     [-58.449913667631584, -34.555984140141035],
     [-58.449302393744055, -34.556700568326185],
     [-58.44912922658008, -34.556899637821715],
     [-58.44830177581553, -34.55785090063835],
     [-58.44943722332896, -34.558530903298056],
     [-58.4494477153054, -34.558537239154745],
     [-58.449689259335564, -34.55838254612389],
     [-58.45021867931366, -34.558076397957],
     [-58.450665009584995, -34.55782080373303],
     [-58.45074247650986, -34.55777644423806],
     [-58.451220301635885, -34.55749747028951],
     [-58.45178342089517, -34.55717117719541],
     [-58.45185007552302, -34.557132661216436],
     [-58.45106549664624, -34.556667368097365]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_11',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 616.0,
   'VIVIEND': 489.0,
   'HOGARES': 314.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.034886111706614,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44791723829532, -34.55617201723845],
     [-58.44709480217855, -34.55712806142632],
     [-58.44830177581553, -34.55785090063835],
     [-58.44912922658008, -34.556899637821715],
     [-58.449302393744055, -34.556700568326185],
     [-58.449913667631584, -34.555984140141035],
     [-58.448698790577645, -34.55526349888143],
     [-58.44791723829532, -34.55617201723845]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 900.0,
   'VIVIEND': 528.0,
   'HOGARES': 404.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.067600535593927,
   'partidas': 36.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45340073605791, -34.553940750704044],
     [-58.45276201022398, -34.55468726541672],
     [-58.45267458139104, -34.55478993648236],
     [-58.453702065488415, -34.5553988320995],
     [-58.45418636363713, -34.55568577422853],
     [-58.454274712235964, -34.555738105391775],
     [-58.45442425822846, -34.555826779439286],
     [-58.454496520466265, -34.555869602109176],
     [-58.454581814814915, -34.55582242372912],
     [-58.45518158680089, -34.55546441916283],
     [-58.45560406751769, -34.555199587089696],
     [-58.4553845896212, -34.555073043197886],
     [-58.455264715897165, -34.55500611213828],
     [-58.45493140897635, -34.55481566485497],
     [-58.45444175017045, -34.55453576767953],
     [-58.45517971708353, -34.55367431830126],
     [-58.45622261503322, -34.55424488310035],
     [-58.4569936740929, -34.553345958882254],
     [-58.45680642362647, -34.55324897609575],
     [-58.45667866799205, -34.55318277127158],
     [-58.45589086026315, -34.55277420004977],
     [-58.45514280752342, -34.55238626042921],
     [-58.45485895979238, -34.55223638016725],
     [-58.454124662616124, -34.55309465898789],
     [-58.45340073605791, -34.553940750704044]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 964.0,
   'VIVIEND': 526.0,
   'HOGARES': 427.0,
   'HOGARES_': 5.0,
   'AREA_KM': 0.045954264233947,
   'partidas': 20.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45367898121425, -34.551613327565285],
     [-58.45240744161348, -34.55095250851819],
     [-58.451709736039376, -34.551766127228035],
     [-58.45097677302644, -34.552620795675296],
     [-58.45223921977128, -34.55327691025234],
     [-58.452952765945625, -34.55244997984195],
     [-58.454124662616124, -34.55309465898789],
     [-58.45485895979238, -34.55223638016725],
     [-58.45367898121425, -34.551613327565285]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_4',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 1110.0,
   'VIVIEND': 555.0,
   'HOGARES': 417.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.049791251661539,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45097677302644, -34.552620795675296],
     [-58.45055077927077, -34.55311752518109],
     [-58.450314505510235, -34.55339014142373],
     [-58.45031385891909, -34.553390887467295],
     [-58.449736236672386, -34.554057461334985],
     [-58.449504078142205, -34.55432737173547],
     [-58.448698790577645, -34.55526349888143],
     [-58.449913667631584, -34.555984140141035],
     [-58.4507158848401, -34.55504399062256],
     [-58.45079735702107, -34.55494850363274],
     [-58.451522765003006, -34.55410735731351],
     [-58.45164901396571, -34.5539608868385],
     [-58.45223921977128, -34.55327691025234],
     [-58.45097677302644, -34.552620795675296]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_5',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 568.0,
   'VIVIEND': 351.0,
   'HOGARES': 252.0,
   'HOGARES_': 6.0,
   'AREA_KM': 0.062861135997593,
   'partidas': 18.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.451522765003006, -34.55410735731351],
     [-58.45079735702107, -34.55494850363274],
     [-58.4507158848401, -34.55504399062256],
     [-58.449913667631584, -34.555984140141035],
     [-58.45106549664624, -34.556667368097365],
     [-58.45175771488086, -34.555867274647454],
     [-58.451875027435, -34.5557294653326],
     [-58.45229157753144, -34.555240054713025],
     [-58.45267458139104, -34.55478993648236],
     [-58.45276201022398, -34.55468726541672],
     [-58.45340073605791, -34.553940750704044],
     [-58.454124662616124, -34.55309465898789],
     [-58.452952765945625, -34.55244997984195],
     [-58.45223921977128, -34.55327691025234],
     [-58.45164901396571, -34.5539608868385],
     [-58.451522765003006, -34.55410735731351]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_6',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 900.0,
   'VIVIEND': 464.0,
   'HOGARES': 388.0,
   'HOGARES_': 35.0,
   'AREA_KM': 0.039937819945037,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45185007552302, -34.557132661216436],
     [-58.4520403062013, -34.55724507465557],
     [-58.4520734214924, -34.55721951363559],
     [-58.452091554926135, -34.557198388016786],
     [-58.452756901964506, -34.55684336626789],
     [-58.453290734611336, -34.55657487953238],
     [-58.45334060763923, -34.556537279316444],
     [-58.45330877860958, -34.55648452930074],
     [-58.45394875001871, -34.55612069605966],
     [-58.453976068756475, -34.55616583979773],
     [-58.454496520466265, -34.555869602109176],
     [-58.45442425822846, -34.555826779439286],
     [-58.454274712235964, -34.555738105391775],
     [-58.45418636363713, -34.55568577422853],
     [-58.453702065488415, -34.5553988320995],
     [-58.45267458139104, -34.55478993648236],
     [-58.45229157753144, -34.555240054713025],
     [-58.451875027435, -34.5557294653326],
     [-58.45175771488086, -34.555867274647454],
     [-58.45106549664624, -34.556667368097365],
     [-58.45185007552302, -34.557132661216436]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_7',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 661.0,
   'VIVIEND': 416.0,
   'HOGARES': 321.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.032453448332161,
   'partidas': 15.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.452201853679526, -34.55734093569693],
     [-58.45140167677898, -34.558260953555184],
     [-58.452303562073624, -34.55879963621358],
     [-58.45309879776171, -34.55787433033867],
     [-58.45341234104703, -34.55750948795097],
     [-58.45390312450121, -34.55694183654976],
     [-58.454717052673686, -34.5560003236734],
     [-58.45518158680089, -34.55546441916283],
     [-58.454581814814915, -34.55582242372912],
     [-58.454496520466265, -34.555869602109176],
     [-58.453976068756475, -34.55616583979773],
     [-58.45394875001871, -34.55612069605966],
     [-58.45330877860958, -34.55648452930074],
     [-58.45334060763923, -34.556537279316444],
     [-58.453290734611336, -34.55657487953238],
     [-58.452756901964506, -34.55684336626789],
     [-58.452091554926135, -34.557198388016786],
     [-58.4520734214924, -34.55721951363559],
     [-58.4520403062013, -34.55724507465557],
     [-58.452201853679526, -34.55734093569693]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_8',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 910.0,
   'VIVIEND': 608.0,
   'HOGARES': 432.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.013644373169243,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.452303562073624, -34.55879963621358],
     [-58.45140167677898, -34.558260953555184],
     [-58.45055372031747, -34.55923596239828],
     [-58.45136530216563, -34.55971907838254],
     [-58.45146318628782, -34.55977739846695],
     [-58.451551558195234, -34.559674658015986],
     [-58.452303562073624, -34.55879963621358]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_10_9',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 701.0,
   'VIVIEND': 389.0,
   'HOGARES': 325.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.021824558800459,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.452201853679526, -34.55734093569693],
     [-58.4520403062013, -34.55724507465557],
     [-58.45185007552302, -34.557132661216436],
     [-58.45178342089517, -34.55717117719541],
     [-58.451220301635885, -34.55749747028951],
     [-58.45074247650986, -34.55777644423806],
     [-58.450665009584995, -34.55782080373303],
     [-58.45021867931366, -34.558076397957],
     [-58.449689259335564, -34.55838254612389],
     [-58.4494477153054, -34.558537239154745],
     [-58.449551292934885, -34.55860483150075],
     [-58.44955124145413, -34.558604859813215],
     [-58.44990522971343, -34.55883631058371],
     [-58.44998625832066, -34.558889277871465],
     [-58.4501394639602, -34.558989366184825],
     [-58.45055372031747, -34.55923596239828],
     [-58.45140167677898, -34.558260953555184],
     [-58.452201853679526, -34.55734093569693]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 568.0,
   'VIVIEND': 220.0,
   'HOGARES': 172.0,
   'HOGARES_': 7.0,
   'AREA_KM': 2.238112567345977,
   'partidas': 35.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45021132443253, -34.54919226532272],
     [-58.450942713603816, -34.54908198340614],
     [-58.45156089894903, -34.54898872945929],
     [-58.45215576165874, -34.54889906199753],
     [-58.452656146690586, -34.5488236095662],
     [-58.45306452285233, -34.548762021401856],
     [-58.45224834311827, -34.54770439570668],
     [-58.451576165567424, -34.5468332606133],
     [-58.4515251978973, -34.54673290160728],
     [-58.451441386577926, -34.54656767895014],
     [-58.45031652031507, -34.54519345467817],
     [-58.45015085376037, -34.5449779012858],
     [-58.45014981099047, -34.54497654450442],
     [-58.4499152075649, -34.5446926464581],
     [-58.449849182500586, -34.54461308481421],
     [-58.449770535916194, -34.54451343222335],
     [-58.4494044934505, -34.544040082522926],
     [-58.448808897563126, -34.54320727415497],
     [-58.448670948024926, -34.54310043395779],
     [-58.44940668158736, -34.542688020251816],
     [-58.451105356909345, -34.54176809376258],
     [-58.45110773976344, -34.54176796108749],
     [-58.45132715434399, -34.54166903576655],
     [-58.451488692845246, -34.5416013026559],
     [-58.45174495694023, -34.54150252080735],
     [-58.451982580276834, -34.54142092028206],
     [-58.45203985802589, -34.54140360094996],
     [-58.4522544153488, -34.54133854755858],
     [-58.452373650938625, -34.541307289368],
     [-58.45246139669482, -34.54128433847683],
     [-58.45261637748188, -34.54124146305248],
     [-58.45414813841316, -34.54077466765579],
     [-58.45689530728149, -34.53945310804426],
     [-58.457685170881554, -34.53904644331057],
     [-58.45884362158616, -34.53824759324392],
     [-58.45884741399193, -34.538244726471696],
     [-58.45827821150541, -34.53778058136059],
     [-58.45806717581741, -34.53760849441587],
     [-58.45787272820493, -34.537717053156115],
     [-58.45784881555427, -34.53770423500187],
     [-58.45783009415933, -34.53768993814156],
     [-58.45781128745569, -34.53767930333402],
     [-58.45777801400174, -34.53766162552004],
     [-58.457752739724135, -34.53764951153411],
     [-58.45771589188201, -34.53763472095102],
     [-58.4576775974806, -34.53761753587403],
     [-58.45765240818303, -34.53760788671823],
     [-58.45760024239164, -34.53759013764907],
     [-58.45756637281866, -34.537580488112674],
     [-58.45752169587986, -34.53756372526347],
     [-58.45749905965607, -34.53755386491153],
     [-58.45747693363821, -34.53755048360493],
     [-58.45745361640427, -34.53754400357772],
     [-58.45742825690416, -34.53753512903461],
     [-58.45740715225594, -34.53752935333615],
     [-58.45738315403848, -34.53752583108296],
     [-58.45735992187907, -34.537519984859465],
     [-58.45723627314686, -34.537477161467336],
     [-58.45720955218373, -34.53746666706084],
     [-58.45716308849879, -34.5374463123648],
     [-58.4571347508933, -34.53743201496094],
     [-58.45711126384215, -34.5374206755896],
     [-58.45707552235329, -34.537408420135144],
     [-58.45705365201655, -34.537400249916864],
     [-58.45698361611807, -34.53737102060891],
     [-58.456954767713135, -34.537360385198454],
     [-58.45692847244265, -34.53734820056909],
     [-58.456894773691346, -34.53733214225039],
     [-58.45686652090264, -34.53732312660434],
     [-58.45684184183374, -34.53732143524178],
     [-58.456813930012046, -34.53730453208757],
     [-58.45679410242136, -34.53729241816493],
     [-58.4567213442152, -34.53725297706281],
     [-58.45670177180032, -34.53724297586412],
     [-58.45667249810459, -34.537230509336204],
     [-58.45664220335396, -34.537216070872496],
     [-58.45661922690538, -34.53720649203692],
     [-58.45657446529187, -34.53718923586642],
     [-58.4565478298944, -34.5371747975627],
     [-58.45651779061185, -34.53715866889962],
     [-58.45649132529889, -34.53714606162181],
     [-58.45645788197229, -34.53713056658878],
     [-58.456427076755695, -34.53711528295475],
     [-58.45640435576675, -34.53710429560732],
     [-58.456371082769714, -34.537087532923245],
     [-58.45635014875425, -34.537078517536436],
     [-58.45632589586575, -34.5370690090033],
     [-58.456290665142006, -34.537058091405285],
     [-58.45626751845722, -34.537050061827195],
     [-58.456243436135026, -34.53703604613653],
     [-58.456211354203255, -34.53702442443981],
     [-58.45619127119673, -34.537015761191995],
     [-58.4561490628272, -34.53699794160732],
     [-58.45612829913619, -34.536987940252395],
     [-58.4560767302534, -34.53696392280712],
     [-58.45603758585244, -34.536942230017736],
     [-58.45600312136447, -34.53692828413681],
     [-58.455930363289525, -34.53689574413487],
     [-58.455898792142186, -34.53688306602075],
     [-58.45586892300236, -34.53687045841789],
     [-58.4558480743571, -34.53685947107125],
     [-58.455823140990574, -34.536847497551975],
     [-58.455718897813085, -34.53679333541015],
     [-58.455695496133124, -34.536783192982035],
     [-58.45566860519544, -34.5367749518026],
     [-58.45564239513502, -34.536765865565904],
     [-58.455599165771986, -34.53674846827679],
     [-58.4555783171686, -34.53673776258077],
     [-58.45554606594842, -34.536717901064655],
     [-58.45551483569561, -34.53670092699322],
     [-58.455451268464444, -34.536672331001604],
     [-58.45542973884819, -34.53666451263288],
     [-58.45540310385234, -34.53664965153294],
     [-58.45538455329299, -34.53663556557818],
     [-58.455366598223286, -34.53662394450419],
     [-58.455338431688595, -34.536606407177516],
     [-58.45528567279968, -34.53657189611538],
     [-58.45526448386845, -34.536561331193276],
     [-58.45523980647022, -34.536543794056065],
     [-58.4552115556081, -34.536518228332966],
     [-58.455188069529804, -34.53650181804584],
     [-58.455152329338375, -34.536482660452585],
     [-58.455120843628535, -34.53646927789952],
     [-58.45510067581332, -34.53646012149673],
     [-58.4550823804602, -34.53644807781409],
     [-58.45505029882517, -34.53643744175045],
     [-58.45502817345367, -34.53643131345477],
     [-58.455005197587006, -34.53641976243598],
     [-58.45497379743397, -34.536401943123934],
     [-58.45493754671004, -34.53638306713212],
     [-58.454910231126696, -34.536367853759614],
     [-58.454880533013075, -34.53634996410776],
     [-58.45485764229541, -34.53633834264229],
     [-58.45483909169841, -34.536326369330794],
     [-58.45481118046747, -34.5363110150492],
     [-58.45478335444638, -34.53629460440327],
     [-58.454750762993484, -34.53627678495628],
     [-58.454710512936934, -34.53625537336405],
     [-58.4546814104002, -34.53623959642929],
     [-58.45466260426073, -34.53623065131589],
     [-58.45463988359465, -34.53622121297169],
     [-58.454619035054975, -34.53621247898944],
     [-58.454583465200365, -34.536194518451985],
     [-58.45455844697656, -34.536183953152175],
     [-58.454531982047364, -34.536173599023165],
     [-58.45446211844378, -34.536142466820685],
     [-58.4544104652381, -34.53612070223822],
     [-58.454381532891574, -34.5361060520309],
     [-58.45436459948527, -34.53609224772703],
     [-58.45434724077753, -34.53607654193745],
     [-58.45429848191189, -34.53604590405212],
     [-58.454221046326474, -34.53599836234387],
     [-58.454201049079366, -34.535987656470546],
     [-58.45416811692709, -34.535975189085136],
     [-58.45414080091786, -34.535966806690055],
     [-58.45411271934618, -34.53595525514455],
     [-58.45408429772626, -34.53594039362964],
     [-58.454064385660644, -34.53592919477021],
     [-58.45403307071415, -34.535914051341756],
     [-58.45398099278653, -34.53588728642613],
     [-58.45391512946496, -34.53585446401321],
     [-58.45389317511502, -34.535842772009154],
     [-58.453862711416605, -34.5358257975681],
     [-58.45382841842026, -34.5358074143566],
     [-58.4538072301813, -34.53579389136255],
     [-58.45375744975166, -34.53577015476045],
     [-58.45372936810258, -34.535760434156536],
     [-58.45369354332661, -34.535742543764094],
     [-58.45367405690876, -34.535730851902414],
     [-58.4536458059994, -34.535712680358465],
     [-58.45362393776332, -34.535692326131134],
     [-58.453590240543946, -34.53567415416934],
     [-58.453561393817715, -34.535657461470215],
     [-58.453538248314956, -34.53564457210082],
     [-58.45351901682869, -34.53563661271787],
     [-58.45348497800194, -34.53562984942749],
     [-58.4534631936267, -34.53562125602496],
     [-58.453439707792484, -34.53560801448988],
     [-58.453419966316716, -34.53559477323486],
     [-58.45339894874001, -34.535578151516056],
     [-58.45338439864525, -34.53556188240828],
     [-58.45336542274856, -34.5355515990207],
     [-58.45334576687716, -34.535534061881606],
     [-58.4533248339872, -34.53552138391368],
     [-58.453299816163366, -34.53551046623374],
     [-58.45327794739001, -34.535496098003975],
     [-58.45325795028038, -34.53548630749045],
     [-58.4532349742484, -34.535480671772866],
     [-58.45320553193656, -34.53546426063995],
     [-58.45318153517001, -34.53545475149982],
     [-58.45315694249279, -34.53544721418706],
     [-58.45313583967317, -34.53543263471885],
     [-58.45311831102274, -34.53541791467894],
     [-58.45309320850596, -34.53540396870756],
     [-58.45303551592178, -34.53536649846038],
     [-58.45302054080812, -34.53534706018427],
     [-58.45302530862887, -34.53532720092645],
     [-58.45304615947197, -34.535312624758795],
     [-58.45303169575473, -34.535286284948754],
     [-58.45301986887892, -34.53527050898203],
     [-58.45301485033932, -34.53525086022099],
     [-58.45302259652252, -34.53523170544153],
     [-58.45304089424082, -34.535218396708544],
     [-58.45305672418641, -34.53520431311128],
     [-58.45306600356396, -34.535172693359215],
     [-58.453060389346575, -34.53515290370426],
     [-58.45305069017221, -34.53513515602931],
     [-58.453038693499714, -34.53511607011121],
     [-58.45302840276616, -34.53506268772075],
     [-58.45302814992238, -34.53504149000356],
     [-58.45303223844341, -34.53500860220562],
     [-58.45303709172274, -34.534985433013546],
     [-58.45304603116194, -34.53494972862879],
     [-58.453047054657105, -34.53492965780005],
     [-58.45304603630735, -34.53490515008241],
     [-58.45306731803961, -34.53484275588166],
     [-58.45307234156875, -34.53481895288276],
     [-58.45307021748933, -34.534789656228966],
     [-58.453065113641536, -34.53477197934061],
     [-58.453053627630354, -34.534752682190394],
     [-58.453035674395416, -34.53473148307275],
     [-58.45301116814332, -34.534714438463276],
     [-58.45298325774499, -34.53469943588119],
     [-58.4529590062081, -34.534687532251475],
     [-58.4529388396592, -34.53467323451907],
     [-58.452909057471075, -34.534655344376155],
     [-58.45288446559064, -34.53464322943153],
     [-58.45284021747918, -34.53461942247141],
     [-58.45279869220793, -34.53459829183738],
     [-58.45277835496089, -34.53458864206482],
     [-58.45275946476705, -34.534575752891236],
     [-58.452743212838314, -34.5345609624751],
     [-58.45269683863712, -34.53452652122775],
     [-58.45267667234909, -34.534510744542466],
     [-58.45266254802706, -34.534494827502044],
     [-58.452641701572425, -34.53447405063328],
     [-58.45261821766743, -34.53444855511844],
     [-58.45259311682694, -34.534423834131914],
     [-58.45257473766007, -34.534407846304674],
     [-58.4525715913485, -34.534388831496116],
     [-58.452546490779085, -34.534362138620764],
     [-58.45252504881445, -34.53434044616685],
     [-58.45248675990331, -34.534299385632195],
     [-58.45247186953401, -34.53428544038416],
     [-58.45245774510789, -34.53427100222876],
     [-58.45244438679752, -34.53425466268122],
     [-58.452433326574535, -34.53423466126426],
     [-58.45241733077214, -34.53421409603674],
     [-58.45240558926991, -34.534198249590695],
     [-58.45238695546921, -34.534177613712444],
     [-58.452377086460245, -34.534159020875784],
     [-58.452356750596586, -34.53413944121271],
     [-58.45232637477945, -34.53410753644936],
     [-58.45231105979773, -34.53408704168959],
     [-58.452294127474815, -34.53407056097252],
     [-58.45227353776473, -34.534039713392936],
     [-58.45225056495029, -34.53401203469731],
     [-58.4522282735374, -34.533979496782045],
     [-58.45221210730421, -34.53396160763391],
     [-58.45220343059541, -34.53393604288362],
     [-58.45218607311278, -34.53391737896269],
     [-58.45216922605239, -34.53390005314412],
     [-58.45215620858354, -34.53388103747171],
     [-58.45213927837794, -34.53384835915374],
     [-58.452131111173316, -34.533831597474034],
     [-58.45211554116806, -34.53380976460586],
     [-58.45209290881256, -34.53378243803035],
     [-58.4520397337433, -34.533699403199954],
     [-58.452014036117525, -34.53368644289055],
     [-58.45199846601667, -34.53366580721933],
     [-58.45198093792761, -34.53365115743626],
     [-58.45196672904829, -34.53363319800219],
     [-58.45195975348153, -34.533614675808685],
     [-58.45195039496163, -34.53359805486],
     [-58.45192563373639, -34.53358284103788],
     [-58.45191150960493, -34.53356776899934],
     [-58.45189883284276, -34.53354713357058],
     [-58.451885644923415, -34.53353100524784],
     [-58.451874840329374, -34.53351015870945],
     [-58.45185969535954, -34.53349276257364],
     [-58.45185169868572, -34.53347409943435],
     [-58.451835532182514, -34.53345966102368],
     [-58.451786864552844, -34.533400711577414],
     [-58.451764147189856, -34.533374370871236],
     [-58.45174611069832, -34.53334387554913],
     [-58.4517335196522, -34.53331908507862],
     [-58.45171429036154, -34.533299787102294],
     [-58.45170025206078, -34.533279785347915],
     [-58.451689107252044, -34.53325823451894],
     [-58.45167498405345, -34.53323682426858],
     [-58.451657628683925, -34.533204145842014],
     [-58.45163908061841, -34.53318174924744],
     [-58.45161397985007, -34.53316153520755],
     [-58.45160036655511, -34.53314547723866],
     [-58.451589902111984, -34.53312730682673],
     [-58.45158445829296, -34.533109629840766],
     [-58.45157178186827, -34.53308758589123],
     [-58.451555361240636, -34.533065330325876],
     [-58.451533495107896, -34.5330382149861],
     [-58.451514521584016, -34.53301617045444],
     [-58.451467471275876, -34.53295715060049],
     [-58.451448497977246, -34.53293369757294],
     [-58.45142620559752, -34.53291277950967],
     [-58.45140297922589, -34.53287664971394],
     [-58.45138647372184, -34.53285340817752],
     [-58.45137243586047, -34.532831293655974],
     [-58.4513623969578, -34.5328133345359],
     [-58.45135405992287, -34.53279579811868],
     [-58.451341042954596, -34.532775725991975],
     [-58.45132428259234, -34.532749597027994],
     [-58.45131041524446, -34.53272536978673],
     [-58.45127425691387, -34.53267078759987],
     [-58.451245158432855, -34.532639234800826],
     [-58.45122618468905, -34.53262000719376],
     [-58.451211296434494, -34.53259437135939],
     [-58.451202448955605, -34.532576271489],
     [-58.45118449659873, -34.53255549463743],
     [-58.45117581918546, -34.532538380720844],
     [-58.451160504384276, -34.53252070278246],
     [-58.451146210611995, -34.53250394045424],
     [-58.451136343020586, -34.53247851635792],
     [-58.45113319875424, -34.53244759980434],
     [-58.45113532859993, -34.53242985308919],
     [-58.45114137318514, -34.532409641894915],
     [-58.451159758828815, -34.532373515981135],
     [-58.45116469805487, -34.53234682564785],
     [-58.451176446367704, -34.53230964273997],
     [-58.45118759701459, -34.53228689675079],
     [-58.451201812012954, -34.53225746074289],
     [-58.45120836675545, -34.532240066563794],
     [-58.45120445668987, -34.53220858654456],
     [-58.451198247153236, -34.53219090946664],
     [-58.45119042079685, -34.53217330266029],
     [-58.4511814882522, -34.532155343627664],
     [-58.45116268626107, -34.53212569323246],
     [-58.451150179246795, -34.53211118464925],
     [-58.45110720992516, -34.53208357426145],
     [-58.45108142820689, -34.532068008046174],
     [-58.45106772992054, -34.53205321764395],
     [-58.451070966282636, -34.53203349915437],
     [-58.45106458659671, -34.53201582205295],
     [-58.45104093054076, -34.53201279155298],
     [-58.451023657956526, -34.53200025438133],
     [-58.45100425784935, -34.53198877336765],
     [-58.45098187680095, -34.5319959544987],
     [-58.45095430286292, -34.532017924224746],
     [-58.45093728142691, -34.53203489483755],
     [-58.450911066289265, -34.53207602008805],
     [-58.450863917281666, -34.53211988985246],
     [-58.4508429818389, -34.53213390225282],
     [-58.450806810461295, -34.53217502651326],
     [-58.4507921714147, -34.532193546671444],
     [-58.45078016995912, -34.53221460235921],
     [-58.450731231653094, -34.53227347226735],
     [-58.45071318862031, -34.532292907597686],
     [-58.4506936139705, -34.532311568107744],
     [-58.450679826225276, -34.53232734178901],
     [-58.45063982246752, -34.53238867738803],
     [-58.450598033302484, -34.532438533639876],
     [-58.450582628526725, -34.532455504362254],
     [-58.45053777652329, -34.53250071228702],
     [-58.45051445616689, -34.532529020519924],
     [-58.45048892196753, -34.532566483682224],
     [-58.45045700471185, -34.53260972098949],
     [-58.45043930100758, -34.53263542407242],
     [-58.45040261655803, -34.532690703436515],
     [-58.450379975885205, -34.53272570201692],
     [-58.45036635791376, -34.532743447558396],
     [-58.450337505295664, -34.532777811684696],
     [-58.45032533416857, -34.53279400803398],
     [-58.45030311914542, -34.53282745730874],
     [-58.45027894628754, -34.53286499098773],
     [-58.45024277178877, -34.532923087324264],
     [-58.45021911051472, -34.53295350819203],
     [-58.450201236114324, -34.5329816056466],
     [-58.45018642568336, -34.53300625262333],
     [-58.45017697749002, -34.53302301263031],
     [-58.45016531564966, -34.53304737823007],
     [-58.45015748299958, -34.53307265973739],
     [-58.45015305473733, -34.53309434995636],
     [-58.45014905118318, -34.5331211811901],
     [-58.450145555530604, -34.533165829814806],
     [-58.45014554993901, -34.53320308425015],
     [-58.450143417897195, -34.53323392985864],
     [-58.450136001724665, -34.53331900160615],
     [-58.450127227102676, -34.53338336847912],
     [-58.45012330717236, -34.53341984784322],
     [-58.450119556807124, -34.533460482255855],
     [-58.4501175944659, -34.5334944969718],
     [-58.45011367528915, -34.533525905788245],
     [-58.45011009825633, -34.53354562421246],
     [-58.450106010799956, -34.533564286219985],
     [-58.45010030671398, -34.53358153957534],
     [-58.450098683529454, -34.53362365311512],
     [-58.45009587073734, -34.533654146529116],
     [-58.45009229306854, -34.5336780199836],
     [-58.45008599221002, -34.53370245655072],
     [-58.450075351465344, -34.53372647012332],
     [-58.450061475346914, -34.533761610392865],
     [-58.45003908654772, -34.533816327721944],
     [-58.45003006153189, -34.533847524731826],
     [-58.4500273355649, -34.53386639814979],
     [-58.450019332078874, -34.53389513041565],
     [-58.450012691840804, -34.53391266536578],
     [-58.4500097104907, -34.533932102150665],
     [-58.45001047283967, -34.53395534223425],
     [-58.45000272560393, -34.53397766591801],
     [-58.44999302126609, -34.533999073882256],
     [-58.44996620801632, -34.53404907231034],
     [-58.44994918162914, -34.534094494177815],
     [-58.44993530657883, -34.534121887763106],
     [-58.4499239860124, -34.53413899967295],
     [-58.44990721863548, -34.5341598434967],
     [-58.44988653657344, -34.53418195454397],
     [-58.44986313155435, -34.53420293851342],
     [-58.44984236514115, -34.534220049422245],
     [-58.44978951241658, -34.53426659427713],
     [-58.44975266024598, -34.53429849256182],
     [-58.449736658803644, -34.53431849135177],
     [-58.449739208675695, -34.53433821041274],
     [-58.44971945093742, -34.534435464204286],
     [-58.44970463674779, -34.53448173136086],
     [-58.44968650072529, -34.53454729440551],
     [-58.44967679363062, -34.53458546331342],
     [-58.449668704078384, -34.53461919566528],
     [-58.44965550974233, -34.53464588504656],
     [-58.44964333486921, -34.53468349029358],
     [-58.449640438162845, -34.53470511022766],
     [-58.449639750967975, -34.53474616748993],
     [-58.44963591569407, -34.53478370320289],
     [-58.44963216707723, -34.534811238681925],
     [-58.449627313514284, -34.53483025270875],
     [-58.44959709497036, -34.53488588462392],
     [-58.44958526326675, -34.53490539086967],
     [-58.449559047914214, -34.53493792405253],
     [-58.44953589715347, -34.53496362640832],
     [-58.44952432094125, -34.53498172419058],
     [-58.44952235987546, -34.5350058794945],
     [-58.44951495282748, -34.535028062331634],
     [-58.44950558930275, -34.535045244835636],
     [-58.44949333203016, -34.53506496229872],
     [-58.44948115992807, -34.53508418680002],
     [-58.44947698612223, -34.535109398226915],
     [-58.44947536519958, -34.535135032475466],
     [-58.44946395601572, -34.53517291948143],
     [-58.4494593575886, -34.53519256734627],
     [-58.44945390848665, -34.53521024323987],
     [-58.44944599155904, -34.53522770759264],
     [-58.44944556262909, -34.535249398212194],
     [-58.44944130332613, -34.535277004052055],
     [-58.44942589294199, -34.53532453873995],
     [-58.449417802120976, -34.53536517264639],
     [-58.44941209000524, -34.53543130038518],
     [-58.449409700963166, -34.5354708081228],
     [-58.44941207981241, -34.53549545686487],
     [-58.44941071385665, -34.53552299259309],
     [-58.44941206524477, -34.53558714921997],
     [-58.44941699733352, -34.53561010805759],
     [-58.449431290675335, -34.53563074391257],
     [-58.449451709965636, -34.53565884539952],
     [-58.44946600313491, -34.535680678462256],
     [-58.44949144217795, -34.5357158229097],
     [-58.44951713620648, -34.535753080106204],
     [-58.44953330147758, -34.535775617605154],
     [-58.44955363635831, -34.53579977530818],
     [-58.44956818594817, -34.53581477723537],
     [-58.44958656487135, -34.535830624662864],
     [-58.44966110342697, -34.5358837325159],
     [-58.44969548081267, -34.53590099011854],
     [-58.44973632471588, -34.53592493870016],
     [-58.4497667025025, -34.535941984585314],
     [-58.44979223024167, -34.53595515661756],
     [-58.449827714115216, -34.53597149878471],
     [-58.44985153933561, -34.535988262260865],
     [-58.44987340839403, -34.53599777183101],
     [-58.44989698121154, -34.535995732001844],
     [-58.44991740677487, -34.53598439584013],
     [-58.449939107693496, -34.53598045435262],
     [-58.449961744155054, -34.53598010459467],
     [-58.45000199518316, -34.53598623569464],
     [-58.4500682013411, -34.53599342583221],
     [-58.45010360189317, -34.535998429609165],
     [-58.45017474306977, -34.536010690742565],
     [-58.450206824741265, -34.53601583499761],
     [-58.450311749577246, -34.53603352216837],
     [-58.45038552835473, -34.53604944550648],
     [-58.45047139081701, -34.53606846867671],
     [-58.45049334619692, -34.53607023147897],
     [-58.45053300258506, -34.53606967204245],
     [-58.45058414660186, -34.53607453639907],
     [-58.450616654399894, -34.53607566640752],
     [-58.45064099327809, -34.53607249972287],
     [-58.45068448065566, -34.53606137698073],
     [-58.450805494199884, -34.53604554337498],
     [-58.450838342117365, -34.536048574811794],
     [-58.450896039713555, -34.53604689022066],
     [-58.45092131423911, -34.536046751812506],
     [-58.45096275752165, -34.536047460044934],
     [-58.45100556216797, -34.536049788150976],
     [-58.45102836852812, -34.536051691787],
     [-58.451059854170545, -34.536059723154445],
     [-58.45110495410682, -34.53607937580526],
     [-58.45112427036947, -34.53608874406043],
     [-58.45115498786571, -34.53611325460047],
     [-58.45117421863476, -34.53612558065729],
     [-58.45119447105807, -34.53613459686848],
     [-58.45121914887922, -34.536141993735114],
     [-58.45124799709852, -34.53614558807947],
     [-58.45127122964194, -34.53614270286241],
     [-58.451292845688215, -34.53613693009651],
     [-58.451324589406774, -34.536124960938295],
     [-58.451377182234154, -34.53611475431236],
     [-58.45145760261084, -34.536104127683295],
     [-58.45150194039995, -34.53609666678839],
     [-58.45152968321713, -34.536093570662935],
     [-58.451585082828736, -34.53609427995991],
     [-58.45162014341534, -34.536097029690865],
     [-58.451648736366096, -34.53610041264472],
     [-58.451691199363296, -34.53611259987183],
     [-58.45171826019062, -34.53611858836782],
     [-58.4517421728967, -34.53612035112154],
     [-58.45179033954555, -34.536117468040445],
     [-58.45191841582185, -34.536104662204686],
     [-58.45196062554268, -34.53610142640921],
     [-58.45199287748564, -34.53610713360383],
     [-58.45201440723984, -34.536110234155686],
     [-58.45207278502391, -34.536113478764285],
     [-58.45210512230163, -34.5361174253309],
     [-58.45212716250782, -34.53612172311908],
     [-58.452153372002066, -34.536130669262626],
     [-58.452175922917185, -34.53613412199533],
     [-58.45220255884588, -34.536135673620855],
     [-58.45226902056604, -34.53614321470829],
     [-58.45232441986743, -34.536146740639076],
     [-58.45238390369526, -34.53615230919249],
     [-58.45242083625223, -34.536157242002794],
     [-58.45246772498553, -34.53616597854496],
     [-58.45252176153614, -34.536179222815754],
     [-58.45255699148285, -34.536189437260205],
     [-58.45258294561803, -34.5361994396537],
     [-58.45261068596564, -34.53621676630912],
     [-58.45263085261008, -34.53623289512207],
     [-58.45266088956771, -34.53625937710511],
     [-58.45268769336697, -34.53628078827115],
     [-58.452723091828524, -34.53630565092088],
     [-58.452745726137024, -34.53632403349151],
     [-58.452771168091694, -34.53634790937597],
     [-58.45279056923546, -34.53636122113085],
     [-58.452822139215414, -34.53637812550311],
     [-58.45286434498945, -34.53640932684239],
     [-58.45291854881329, -34.53644947300529],
     [-58.45295403213714, -34.53647757510861],
     [-58.452973773354366, -34.53649419679989],
     [-58.452992577770274, -34.53651694532115],
     [-58.45300619179136, -34.53653377779256],
     [-58.45307486173089, -34.53658272806088],
     [-58.45310013428892, -34.5366011107729],
     [-58.453117407779395, -34.53661674630747],
     [-58.453129319528685, -34.53663632517606],
     [-58.45351129663618, -34.53696903854241],
     [-58.45352942050258, -34.536991786928034],
     [-58.45354209845892, -34.53700995732829],
     [-58.453545926000274, -34.53702798621565],
     [-58.45355622099381, -34.5370476353443],
     [-58.453567622566325, -34.5370648197071],
     [-58.453605912309, -34.537114753336034],
     [-58.453648371678106, -34.537167856351516],
     [-58.45368274776462, -34.5372096908803],
     [-58.453707679039546, -34.53723927089016],
     [-58.45373022788569, -34.53726539993316],
     [-58.45374962845284, -34.53728751456082],
     [-58.453779069770434, -34.53732026397593],
     [-58.453884325865694, -34.53744738732951],
     [-58.45399477537846, -34.53755584854332],
     [-58.45408582347887, -34.53765142065736],
     [-58.45416700065169, -34.53774121722734],
     [-58.454233113709925, -34.53784467499547],
     [-58.454235489472, -34.53791453597684],
     [-58.45423514523918, -34.5379523537536],
     [-58.45423607244405, -34.53804038407912],
     [-58.454215045587894, -34.53810756731452],
     [-58.45417103900579, -34.538197143840556],
     [-58.454157248348764, -34.53823834103739],
     [-58.454086769337934, -34.538383057828796],
     [-58.4542148364499, -34.53849130879568],
     [-58.454229981459385, -34.53852208522379],
     [-58.454315503058474, -34.53857969812317],
     [-58.45429933184652, -34.538598077728565],
     [-58.45422980218266, -34.53861166479679],
     [-58.45422674347135, -34.53856271976411],
     [-58.454181897757735, -34.53853334975178],
     [-58.45403740195632, -34.53846397174733],
     [-58.45400854016978, -34.53858207108483],
     [-58.45375600704567, -34.53891593398391],
     [-58.45366875694686, -34.53910367847233],
     [-58.453636925559735, -34.53913198664087],
     [-58.4534977694027, -34.53925550027225],
     [-58.45343445075006, -34.53927634104597],
     [-58.45261154428043, -34.539683398088904],
     [-58.45258439400619, -34.53970325546429],
     [-58.45254269150173, -34.539719731262984],
     [-58.452519882829364, -34.53972832111475],
     [-58.45249349933211, -34.539740924842285],
     [-58.45246005158684, -34.53975909148281],
     [-58.45242677384299, -34.53977880746057],
     [-58.452400305498855, -34.53978908716251],
     [-58.452374858716624, -34.53979669082594],
     [-58.45235111337437, -34.53980929474559],
     [-58.45233196356218, -34.53982218074759],
     [-58.452272813527216, -34.5398487960542],
     [-58.452228898063694, -34.53986639834335],
     [-58.45220872773163, -34.53987329818251],
     [-58.45218285677182, -34.53986991559617],
     [-58.45215953797017, -34.53987399818852],
     [-58.45214421749337, -34.53988899721702],
     [-58.4521243020935, -34.53989878445589],
     [-58.452101579307296, -34.53990047266641],
     [-58.4520783445767, -34.5399125836078],
     [-58.45205596024481, -34.539929624311924],
     [-58.45202480912066, -34.53995560811749],
     [-58.45199501957665, -34.53998201457948],
     [-58.45197884721332, -34.54000328126478],
     [-58.451964292167894, -34.54002173112267],
     [-58.45194726956088, -34.54003672997643],
     [-58.45192573698362, -34.540047714251415],
     [-58.4518975676342, -34.54004862727724],
     [-58.4518716117482, -34.54004355443712],
     [-58.45183501741781, -34.540042494823965],
     [-58.45180472037372, -34.54004425272926],
     [-58.451773998179355, -34.54004319362161],
     [-58.451740042416105, -34.54003938767283],
     [-58.45170064024181, -34.54003403189209],
     [-58.451640473644446, -34.54002261773994],
     [-58.451573072573424, -34.540016484713085],
     [-58.45129858203436, -34.539627858726845],
     [-58.451336986123756, -34.539461238670874],
     [-58.45107252628403, -34.539175502824094],
     [-58.4510519345716, -34.53915324681605],
     [-58.45083086944432, -34.53893350203679],
     [-58.45073131385354, -34.53883510971492],
     [-58.450709952609884, -34.53883926264722],
     [-58.450682124650086, -34.53883609082287],
     [-58.450653105880704, -34.538828622998565],
     [-58.450677891054475, -34.53868643898149],
     [-58.450588547506584, -34.538592625117296],
     [-58.45049570482963, -34.53856838994872],
     [-58.45046787873984, -34.53855310511283],
     [-58.450416735955244, -34.53852957829583],
     [-58.450385332410406, -34.538536054159735],
     [-58.450262367915144, -34.53848413906061],
     [-58.450239818292225, -34.53846829131621],
     [-58.450085542032454, -34.53837996352618],
     [-58.450067672213805, -34.53836975016938],
     [-58.449769417085186, -34.53819922195216],
     [-58.449751207013996, -34.53818851554329],
     [-58.449649775271794, -34.53812906671559],
     [-58.449477467966986, -34.53798256582825],
     [-58.44946232198402, -34.53796960613296],
     [-58.44927920897024, -34.53781387821873],
     [-58.44927681692835, -34.537341049786754],
     [-58.44942765255793, -34.53657006190493],
     [-58.44849173330542, -34.536014872835764],
     [-58.44847190673506, -34.53600564495315],
     [-58.44845054794985, -34.53599895216087],
     [-58.448428252619216, -34.5359949353762],
     [-58.44840553128876, -34.53599387635534],
     [-58.4483827243653, -34.53599570471372],
     [-58.448360767950845, -34.53600035013697],
     [-58.4483397471547, -34.536007742211325],
     [-58.44832034280587, -34.53601766974471],
     [-58.4483034911049, -34.53602949903019],
     [-58.44826451123716, -34.536054847152066],
     [-58.44818050055818, -34.53615631850884],
     [-58.44820458136081, -34.53616984282158],
     [-58.44819385460131, -34.53619420833131],
     [-58.44819070144843, -34.53621998322463],
     [-58.44819529237685, -34.53624561818931],
     [-58.44820728728824, -34.53626942300264],
     [-58.448226005635135, -34.536289989097256],
     [-58.44868413594285, -34.53656392235289],
     [-58.44870770587371, -34.53658026347591],
     [-58.44872889267528, -34.53659864662423],
     [-58.44874744107126, -34.53661893092149],
     [-58.44876292560821, -34.5366408346234],
     [-58.44877551651972, -34.53666414647785],
     [-58.44878478838602, -34.53668837346767],
     [-58.44879057105138, -34.53671323387736],
     [-58.4487930347363, -34.536738586878315],
     [-58.44879200930794, -34.53676400990603],
     [-58.448787579921785, -34.53678915084901],
     [-58.44877966152156, -34.5368137280003],
     [-58.44876842436334, -34.53683738925752],
     [-58.448754038691966, -34.53685985294236],
     [-58.44837483775051, -34.537324961016644],
     [-58.448113093225146, -34.53766916359224],
     [-58.44812202166057, -34.537710292398195],
     [-58.448250918462236, -34.53789129793856],
     [-58.44829608898046, -34.537997150860924],
     [-58.44849144591756, -34.53820739000532],
     [-58.44861150039634, -34.538348674870186],
     [-58.448574560946945, -34.53838015022235],
     [-58.44851857126461, -34.538337396241275],
     [-58.448434849511074, -34.5382301304258],
     [-58.44829828620084, -34.538086660288364],
     [-58.44823889515142, -34.53803031390373],
     [-58.44818742180537, -34.53795551728817],
     [-58.44810250793031, -34.537856913274375],
     [-58.44799112365589, -34.53778196854954],
     [-58.4478692503735, -34.537829842272956],
     [-58.44752600351253, -34.5380165651086],
     [-58.44429601652089, -34.53979207846618],
     [-58.44253619373787, -34.54074555525716],
     [-58.442572266190055, -34.54079415388922],
     [-58.44227870540155, -34.54094354524842],
     [-58.44206207582164, -34.541101822369484],
     [-58.441187250344676, -34.54157421756016],
     [-58.44118725802679, -34.54154435771506],
     [-58.441584933250674, -34.54128716763974],
     [-58.44178734059355, -34.54117353785984],
     [-58.441975392906286, -34.540946240692044],
     [-58.44207662619008, -34.54076688745827],
     [-58.44211997513779, -34.540641187616906],
     [-58.442257334485305, -34.54063522463345],
     [-58.44248866453337, -34.540563500902735],
     [-58.442734493268, -34.54036015631264],
     [-58.44287188898084, -34.54019869605117],
     [-58.44292978909316, -34.54007313912044],
     [-58.44293697737716, -34.539905601148696],
     [-58.442987651887954, -34.53974412667933],
     [-58.4430093870078, -34.53960046484169],
     [-58.44317569913663, -34.53951077112724],
     [-58.443298497002964, -34.539534805347245],
     [-58.44337084137931, -34.539504886538666],
     [-58.44337809170347, -34.53943312543568],
     [-58.4434431212615, -34.539385247257314],
     [-58.44351548603944, -34.539265607944095],
     [-58.443696272535085, -34.5391400698736],
     [-58.443833548254275, -34.539116146932564],
     [-58.443913137871334, -34.53903242483426],
     [-58.44400709759034, -34.539002508969574],
     [-58.444260125358255, -34.538918742644434],
     [-58.4444047298071, -34.53884700213642],
     [-58.44465767546364, -34.53874534722639],
     [-58.44481675812017, -34.53861980427734],
     [-58.444932421860415, -34.53857193270361],
     [-58.44502640470414, -34.53842842181714],
     [-58.445207172126345, -34.53837457332892],
     [-58.44528667953195, -34.53826697650765],
     [-58.445438527973515, -34.53813530480075],
     [-58.44560472991865, -34.53814131423745],
     [-58.44572037917717, -34.53815928854467],
     [-58.4458649617944, -34.53818325279189],
     [-58.44604571504826, -34.53819517926681],
     [-58.44612520579538, -34.53816533021816],
     [-58.44626981557449, -34.53805168508967],
     [-58.44637102914385, -34.53790817412823],
     [-58.44647946321463, -34.5378303698272],
     [-58.44662408687827, -34.53763897594458],
     [-58.446703584905194, -34.537567224110816],
     [-58.44676869164832, -34.537543288389074],
     [-58.44688433919849, -34.537567247653605],
     [-58.446949355138926, -34.53757331253869],
     [-58.44711563561322, -34.53760917979595],
     [-58.44719511877599, -34.537615175971304],
     [-58.447339703074796, -34.53762716635868],
     [-58.447411945055116, -34.537674923039816],
     [-58.44751311818822, -34.53774078230147],
     [-58.447549371243305, -34.53774078680448],
     [-58.44752045207845, -34.5376570488254],
     [-58.44732526121085, -34.53748955562827],
     [-58.447207838853146, -34.53739904567276],
     [-58.447227586728296, -34.5373746813978],
     [-58.44722759273462, -34.5373422158351],
     [-58.44718828526741, -34.53729347729104],
     [-58.4471539159565, -34.537232485548884],
     [-58.4469643325735, -34.53712274033651],
     [-58.44687423423636, -34.53700103564326],
     [-58.446736813518925, -34.53691566360265],
     [-58.446572493995404, -34.53686888033038],
     [-58.44641057992732, -34.53670674228103],
     [-58.44623171774961, -34.53661502595318],
     [-58.446035830371656, -34.53655154715434],
     [-58.44564395415971, -34.53650916809334],
     [-58.44528611532119, -34.536480877478],
     [-58.44507310312254, -34.53651612945524],
     [-58.44455338014919, -34.536600703252255],
     [-58.44420444897666, -34.536698118030586],
     [-58.44396394179837, -34.53676308292638],
     [-58.44376105214364, -34.53681199646483],
     [-58.4434628467069, -34.53687547250226],
     [-58.44312208906054, -34.536945912994284],
     [-58.442721660352476, -34.537079795008495],
     [-58.442542668730454, -34.53718554277063],
     [-58.44238078187816, -34.537291293115665],
     [-58.442244509949255, -34.53739697711316],
     [-58.44212509455195, -34.53747456453663],
     [-58.44199733034824, -34.537587292109315],
     [-58.44187808817615, -34.537650724051566],
     [-58.441758737762285, -34.53780584817997],
     [-58.441630974315075, -34.537911603366524],
     [-58.4415371713463, -34.537996166620935],
     [-58.44141791390504, -34.538115937471936],
     [-58.44126452134954, -34.53827098474364],
     [-58.441170712149955, -34.53837674539548],
     [-58.440966237366545, -34.53860939073867],
     [-58.440872490436114, -34.538799730628995],
     [-58.440727583603646, -34.539039428608135],
     [-58.44056566661681, -34.53923679838391],
     [-58.44048896296176, -34.53933551917487],
     [-58.440412170268885, -34.53944832473788],
     [-58.440344050335575, -34.53958930151408],
     [-58.44031834378108, -34.53992768502339],
     [-58.44030127590837, -34.54010395362634],
     [-58.44025017030411, -34.5402660607087],
     [-58.44024146880576, -34.54066085705457],
     [-58.44014774645117, -34.54074541921734],
     [-58.44004554595892, -34.5407101177884],
     [-58.439943339765115, -34.54069608437385],
     [-58.43980698761781, -34.540752398228726],
     [-58.43978992417406, -34.540597320992745],
     [-58.439755946408916, -34.54036470355219],
     [-58.43968787313063, -34.54032940822907],
     [-58.43969643005337, -34.54016018053397],
     [-58.43933847123571, -34.54051265602492],
     [-58.43911690804759, -34.54064656022282],
     [-58.438895352189164, -34.54075222392288],
     [-58.438759102495744, -34.54074515486967],
     [-58.43863971965048, -34.540681749648385],
     [-58.43849498011443, -34.54060411360271],
     [-58.438341641209625, -34.54054070135341],
     [-58.438171267328286, -34.5405265119908],
     [-58.43790711737698, -34.54048413371637],
     [-58.4377112293687, -34.54041359918635],
     [-58.437472713251225, -34.5403148154465],
     [-58.43736191039062, -34.5403077500883],
     [-58.437217146893154, -34.54031476238352],
     [-58.43708079998491, -34.54035001636917],
     [-58.43691041797604, -34.540364135765564],
     [-58.436748463388106, -34.540371143873344],
     [-58.43662921987582, -34.54041337298158],
     [-58.43652691408655, -34.54044863361083],
     [-58.43640766368705, -34.5405120601781],
     [-58.43625427751521, -34.5406036489111],
     [-58.43613495279254, -34.54063179268218],
     [-58.436015706306826, -34.540681204454614],
     [-58.435828201707515, -34.540744545095585],
     [-58.43564086245213, -34.5408220407435],
     [-58.435512932480506, -34.54087849251615],
     [-58.43542771555953, -34.540962982521314],
     [-58.43535100883988, -34.54104768564455],
     [-58.43524025560372, -34.54114625462869],
     [-58.435138005535755, -34.54126616395326],
     [-58.43506971667872, -34.54137185519694],
     [-58.4350015885043, -34.54150578652746],
     [-58.43490775371135, -34.54165379680187],
     [-58.43483111215896, -34.541794838933455],
     [-58.4347287449802, -34.542006299283806],
     [-58.434660584994774, -34.54223192265576],
     [-58.43462629443305, -34.54246452576368],
     [-58.43452410085, -34.54266197155246],
     [-58.434436203828035, -34.54286181498013],
     [-58.434413178295415, -34.543000263525364],
     [-58.43429453641422, -34.54301065875885],
     [-58.434161079325776, -34.54304055790441],
     [-58.43400540700517, -34.54307728282801],
     [-58.433860799975555, -34.543109432597134],
     [-58.43369125180045, -34.543155449829214],
     [-58.43349659378907, -34.54321061596194],
     [-58.43330474322456, -34.543268106456416],
     [-58.433170770180254, -34.5433108920124],
     [-58.43314795829139, -34.54332018248093],
     [-58.433114252260324, -34.54333080836494],
     [-58.433083354494315, -34.54334213916219],
     [-58.433053818353365, -34.54335368155463],
     [-58.433024197122485, -34.543365153495074],
     [-58.43299449085174, -34.543376414135174],
     [-58.43296469946619, -34.543387674747315],
     [-58.43293507826119, -34.54339900581779],
     [-58.43290545697289, -34.54341054815345],
     [-58.43287609094669, -34.54342223139255],
     [-58.43284663975515, -34.543434055452],
     [-58.43281718858045, -34.54344580908022],
     [-58.43278756720892, -34.543457492235454],
     [-58.43275820109934, -34.54346931629436],
     [-58.43272892001264, -34.54348135163948],
     [-58.43269972394861, -34.54349359827085],
     [-58.43267095320833, -34.54350640839296],
     [-58.43264252273511, -34.54351964113685],
     [-58.432614517534255, -34.54353357822028],
     [-58.432587278007794, -34.54354829015164],
     [-58.43256063391603, -34.543563847313536],
     [-58.4325342449575, -34.543579897501594],
     [-58.432508111233595, -34.54359615901944],
     [-58.43248197747408, -34.54361249095577],
     [-58.43245567356669, -34.5436286115719],
     [-58.43242894429228, -34.543644239107884],
     [-58.43240170462059, -34.54365916226994],
     [-58.43237403960802, -34.543673521927126],
     [-58.4323458641478, -34.54368731805802],
     [-58.432317603647945, -34.54370090288879],
     [-58.432289172975864, -34.54371434682232],
     [-58.432260827376155, -34.54372786119456],
     [-58.43223273696047, -34.54374172774455],
     [-58.432204986835764, -34.54375594649372],
     [-58.43217774708773, -34.54377086960549],
     [-58.43215093273737, -34.54378614493828],
     [-58.432124288437144, -34.543801842852545],
     [-58.43209789934555, -34.54381782252146],
     [-58.4320716804068, -34.543833943075576],
     [-58.432045546461936, -34.543850345341916],
     [-58.432019667802855, -34.54386681809088],
     [-58.43199387416331, -34.54388350212812],
     [-58.43196825070223, -34.54390025662681],
     [-58.43194271226052, -34.54391722241392],
     [-58.4319173440491, -34.5439341178144],
     [-58.431891975775535, -34.54395115405782],
     [-58.43186677762851, -34.54396840161129],
     [-58.431841664526516, -34.54398579002927],
     [-58.43181680665834, -34.544003389778986],
     [-58.43179211902064, -34.54402091914255],
     [-58.4317673461609, -34.54403873017602],
     [-58.43174274350558, -34.54405654124755],
     [-58.43171822592119, -34.54407442275979],
     [-58.43169362324491, -34.54409223382132],
     [-58.43166919072095, -34.544110185769334],
     [-58.43164475818651, -34.544128137712406],
     [-58.43162058088576, -34.5441463009879],
     [-58.43159657373732, -34.54416460515016],
     [-58.43157265160733, -34.5441831206017],
     [-58.43154881457437, -34.54420163607022],
     [-58.431524977530856, -34.54422015153402],
     [-58.43150114052934, -34.54423852614485],
     [-58.43145899878543, -34.544274502102425],
     [-58.43143618267799, -34.54429386289944],
     [-58.43141328147857, -34.54431315324619],
     [-58.431390380268596, -34.54433244358858],
     [-58.431367393913874, -34.5443518043289],
     [-58.431344577790526, -34.5443710946844],
     [-58.431321846685194, -34.54439059632982],
     [-58.431299285758485, -34.54441016843883],
     [-58.43127689498402, -34.544429881435654],
     [-58.43125475946969, -34.5444497353423],
     [-58.43123296429695, -34.544469800604965],
     [-58.43121133925004, -34.54449007717992],
     [-58.431190224734166, -34.54451063557925],
     [-58.43116945050699, -34.544531546183364],
     [-58.43114893156682, -34.54455252727396],
     [-58.43112866786062, -34.54457371969941],
     [-58.43110857428037, -34.54459512343782],
     [-58.43108865090595, -34.54461652721691],
     [-58.43106881260277, -34.544638001438834],
     [-58.431048804046526, -34.54465954603746],
     [-58.43102888064144, -34.54468094980655],
     [-58.43100878703657, -34.54470228310402],
     [-58.43098852325852, -34.54472347550565],
     [-58.43096783400947, -34.54474445652089],
     [-58.43094705966856, -34.5447653670863],
     [-58.43092628526373, -34.544786418496344],
     [-58.43090568109172, -34.544807399522966],
     [-58.43088558745181, -34.544828662375565],
     [-58.430866004317366, -34.54485027747849],
     [-58.43084735714963, -34.54487245621535],
     [-58.43082939073135, -34.544894916823466],
     [-58.4308118497109, -34.54491772966057],
     [-58.43079473411532, -34.544940824302714],
     [-58.43077795889013, -34.544964059879604],
     [-58.430761438927114, -34.544987436369105],
     [-58.43074508911794, -34.545010953749056],
     [-58.430728909516525, -34.5450344711713],
     [-58.43071281501451, -34.54505798861358],
     [-58.43069663542187, -34.54508143560723],
     [-58.43068062598331, -34.54510502349151],
     [-58.43066487180747, -34.5451287522888],
     [-58.43064937292151, -34.54515255157509],
     [-58.43063404421695, -34.545176421328144],
     [-58.43061888566689, -34.54520043197212],
     [-58.430603897352505, -34.54522437223473],
     [-58.43058899408415, -34.545248453366014],
     [-58.430574090807184, -34.54527253449539],
     [-58.43055910241289, -34.545296615600435],
     [-58.43054419911873, -34.54532069672596],
     [-58.43052929581598, -34.54534477784956],
     [-58.430514477613464, -34.54536885899367],
     [-58.43049965937527, -34.54539301056],
     [-58.43048501134627, -34.54541716216933],
     [-58.430470448390544, -34.54544138422339],
     [-58.43045614072598, -34.54546567676714],
     [-58.430442003216626, -34.545490110202294],
     [-58.43042795083518, -34.54551447323409],
     [-58.430414153690926, -34.54553904760402],
     [-58.43040061189283, -34.5455635516157],
     [-58.43038707005956, -34.5455881260499],
     [-58.43037369838201, -34.54561284137578],
     [-58.43036041180565, -34.54563755672261],
     [-58.43034721030329, -34.54566234251456],
     [-58.43033417901139, -34.545687128350096],
     [-58.43032131787555, -34.54571205507748],
     [-58.43030862695044, -34.54573698184856],
     [-58.43029602109967, -34.545761979064906],
     [-58.430283670541804, -34.54578704677175],
     ...]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 746.0,
   'VIVIEND': 330.0,
   'HOGARES': 241.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.300842104655027,
   'partidas': 45.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44669113832769, -34.54746068959355],
     [-58.44532618448972, -34.545652412398326],
     [-58.44529547699523, -34.54561227743951],
     [-58.445280937423014, -34.54556411866292],
     [-58.44525993333691, -34.54550659515754],
     [-58.44525185944547, -34.54546245035862],
     [-58.445245403577964, -34.54541161735895],
     [-58.445242178999, -34.54537014862429],
     [-58.445240575230756, -34.545308614827064],
     [-58.44524219911003, -34.54527383521623],
     [-58.44524705566069, -34.54524173143981],
     [-58.44525352714784, -34.5452176540115],
     [-58.4452567670763, -34.54518555000341],
     [-58.44525673209416, -34.54516255434591],
     [-58.4451921503932, -34.54495679639546],
     [-58.44485221620131, -34.54513728405421],
     [-58.442494990505516, -34.54643370646119],
     [-58.44222473012045, -34.54658232673621],
     [-58.44042975065923, -34.547571330340695],
     [-58.44000047057331, -34.54781048194177],
     [-58.44006853865312, -34.547887961079034],
     [-58.44046281637831, -34.548371001927414],
     [-58.440533517632815, -34.54847179165048],
     [-58.440562798692746, -34.5484622192869],
     [-58.44076844475066, -34.548403100164386],
     [-58.441168240859184, -34.54830443674826],
     [-58.44159356536142, -34.548222326097616],
     [-58.442539957722204, -34.548783273014486],
     [-58.442740368852725, -34.548902040941186],
     [-58.44367877704187, -34.54945832967702],
     [-58.44477506332247, -34.55010815759346],
     [-58.44587885583124, -34.55076234292619],
     [-58.447034154445795, -34.55144715929485],
     [-58.44742733482558, -34.55079473022881],
     [-58.44818274455045, -34.55068073540269],
     [-58.448910234098335, -34.550570887770256],
     [-58.449416478957765, -34.55049763342044],
     [-58.44947963335995, -34.55041502239834],
     [-58.449594502430415, -34.55034229619665],
     [-58.44971459159948, -34.55032513992182],
     [-58.44950822128837, -34.54929767378411],
     [-58.44925424675862, -34.54815417715117],
     [-58.44903213657531, -34.547108095357714],
     [-58.448887906934154, -34.5471299645707],
     [-58.44817517190051, -34.5472372786246],
     [-58.44744549751817, -34.54734712166869],
     [-58.44669113832769, -34.54746068959355]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 579.0,
   'VIVIEND': 259.0,
   'HOGARES': 207.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.055532024522677,
   'partidas': 36.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44971459159948, -34.55032513992182],
     [-58.449946584731826, -34.550417502001764],
     [-58.45046283517366, -34.55033710450509],
     [-58.451193638273075, -34.55022653935233],
     [-58.45240744161348, -34.55095250851819],
     [-58.4527943405773, -34.55050126313521],
     [-58.453423988547705, -34.549967146045326],
     [-58.45355856549156, -34.549853069200346],
     [-58.45356216293352, -34.54964560015179],
     [-58.453522268159944, -34.54943326857346],
     [-58.453359216848185, -34.54920825128123],
     [-58.45321973889057, -34.54901577152108],
     [-58.45306452285233, -34.548762021401856],
     [-58.452656146690586, -34.5488236095662],
     [-58.45215576165874, -34.54889906199753],
     [-58.45156089894903, -34.54898872945929],
     [-58.450942713603816, -34.54908198340614],
     [-58.45021132443253, -34.54919226532272],
     [-58.44950822128837, -34.54929767378411],
     [-58.44971459159948, -34.55032513992182]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_4',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 557.0,
   'VIVIEND': 308.0,
   'HOGARES': 229.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.041954652005911,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45240744161348, -34.55095250851819],
     [-58.451193638273075, -34.55022653935233],
     [-58.45046283517366, -34.55033710450509],
     [-58.449946584731826, -34.550417502001764],
     [-58.45003614969198, -34.55046732504371],
     [-58.45008753315142, -34.55053779855045],
     [-58.45008311510298, -34.5506228459063],
     [-58.45004199018588, -34.55068602002393],
     [-58.4500170206395, -34.550729756306794],
     [-58.449955339014444, -34.55078563844486],
     [-58.449865758837944, -34.55083301284108],
     [-58.45006923559368, -34.551681670956604],
     [-58.45032508289509, -34.55296916977483],
     [-58.45042774227127, -34.55306558448977],
     [-58.45042461865496, -34.553152238655024],
     [-58.450314505510235, -34.55339014142373],
     [-58.45055077927077, -34.55311752518109],
     [-58.45097677302644, -34.552620795675296],
     [-58.451709736039376, -34.551766127228035],
     [-58.45240744161348, -34.55095250851819]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_5',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 591.0,
   'VIVIEND': 262.0,
   'HOGARES': 222.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.054207031352852,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45042774227127, -34.55306558448977],
     [-58.45032508289509, -34.55296916977483],
     [-58.45006923559368, -34.551681670956604],
     [-58.449865758837944, -34.55083301284108],
     [-58.449955339014444, -34.55078563844486],
     [-58.4500170206395, -34.550729756306794],
     [-58.45004199018588, -34.55068602002393],
     [-58.45008311510298, -34.5506228459063],
     [-58.45008753315142, -34.55053779855045],
     [-58.45003614969198, -34.55046732504371],
     [-58.449946584731826, -34.550417502001764],
     [-58.44971459159948, -34.55032513992182],
     [-58.449594502430415, -34.55034229619665],
     [-58.44947963335995, -34.55041502239834],
     [-58.449416478957765, -34.55049763342044],
     [-58.448910234098335, -34.550570887770256],
     [-58.44818274455045, -34.55068073540269],
     [-58.44742733482558, -34.55079473022881],
     [-58.447034154445795, -34.55144715929485],
     [-58.44814053552113, -34.55210287370381],
     [-58.44925587031351, -34.55276393123192],
     [-58.44931195668301, -34.55279710711617],
     [-58.45025700577407, -34.55335721900009],
     [-58.45031385891909, -34.553390887467295],
     [-58.450314505510235, -34.55339014142373],
     [-58.45042461865496, -34.553152238655024],
     [-58.45042774227127, -34.55306558448977]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_6',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 1081.0,
   'VIVIEND': 482.0,
   'HOGARES': 408.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.096160896295309,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44587885583124, -34.55076234292619],
     [-58.44477506332247, -34.55010815759346],
     [-58.44367877704187, -34.54945832967702],
     [-58.442861211585935, -34.5504078681528],
     [-58.44330612570583, -34.550673720042255],
     [-58.44396507859009, -34.551060239738604],
     [-58.4450706659496, -34.55170872820322],
     [-58.445549296733965, -34.551989436201495],
     [-58.44621712078767, -34.55238425494614],
     [-58.44732852951339, -34.55304117449983],
     [-58.44845408374484, -34.55370653640249],
     [-58.448814179774956, -34.55391939929047],
     [-58.449504078142205, -34.55432737173547],
     [-58.449736236672386, -34.554057461334985],
     [-58.45031385891909, -34.553390887467295],
     [-58.45025700577407, -34.55335721900009],
     [-58.44931195668301, -34.55279710711617],
     [-58.44925587031351, -34.55276393123192],
     [-58.44814053552113, -34.55210287370381],
     [-58.447034154445795, -34.55144715929485],
     [-58.44587885583124, -34.55076234292619]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_11_7',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 726.0,
   'VIVIEND': 355.0,
   'HOGARES': 284.0,
   'HOGARES_': 22.0,
   'AREA_KM': 0.094835817727685,
   'partidas': 19.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44396507859009, -34.551060239738604],
     [-58.44330612570583, -34.550673720042255],
     [-58.442861211585935, -34.5504078681528],
     [-58.44206746661631, -34.55132951710503],
     [-58.44318461520058, -34.551992250227094],
     [-58.44427829247554, -34.552641095983994],
     [-58.445418369747635, -34.553317474250115],
     [-58.4465391459953, -34.55398236012934],
     [-58.44765585483038, -34.55464484073255],
     [-58.448698790577645, -34.55526349888143],
     [-58.449504078142205, -34.55432737173547],
     [-58.448814179774956, -34.55391939929047],
     [-58.44845408374484, -34.55370653640249],
     [-58.44732852951339, -34.55304117449983],
     [-58.44621712078767, -34.55238425494614],
     [-58.445549296733965, -34.551989436201495],
     [-58.4450706659496, -34.55170872820322],
     [-58.44396507859009, -34.551060239738604]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 703.0,
   'VIVIEND': 420.0,
   'HOGARES': 277.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.061927987905025,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.446049982642066, -34.556508192299546],
     [-58.44674899587767, -34.55692089978938],
     [-58.44709480217855, -34.55712806142632],
     [-58.44791723829532, -34.55617201723845],
     [-58.448698790577645, -34.55526349888143],
     [-58.44765585483038, -34.55464484073255],
     [-58.4465391459953, -34.55398236012934],
     [-58.44644336629757, -34.55409749069024],
     [-58.44575928496971, -34.55488903406243],
     [-58.444930877945914, -34.55584738703738],
     [-58.446049982642066, -34.556508192299546]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_10',
   'BARRIO': 'PALERMO',
   'COMUNA': '14',
   'POBLACI': 564.0,
   'VIVIEND': 302.0,
   'HOGARES': 249.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.207767744368613,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44198278359904, -34.561261821364646],
     [-58.4427839480577, -34.5603255275184],
     [-58.44359888820557, -34.55937303291222],
     [-58.443390705570955, -34.55924989908043],
     [-58.44246589276566, -34.5586991043321],
     [-58.44136491428446, -34.5580529178114],
     [-58.44023995765787, -34.557373335920396],
     [-58.43988872016879, -34.55716411156887],
     [-58.43967050612447, -34.55703420877339],
     [-58.43944429291409, -34.55689895183876],
     [-58.439108038287834, -34.556697897261664],
     [-58.43798405230596, -34.5560259708437],
     [-58.43686391405883, -34.55535628839037],
     [-58.43574702762601, -34.55468856818097],
     [-58.435017367654225, -34.55425226899799],
     [-58.4349135939657, -34.55419794543835],
     [-58.43475524240704, -34.55413917873536],
     [-58.43456688561088, -34.5541130081684],
     [-58.43405535239732, -34.55404190181766],
     [-58.433511676934884, -34.55440528132875],
     [-58.43458347303427, -34.554903380705575],
     [-58.434737173094675, -34.55497517806973],
     [-58.43485768109922, -34.55503506601755],
     [-58.435118867525915, -34.55516470547391],
     [-58.43538396586067, -34.55530772580532],
     [-58.43564514100729, -34.555477364962115],
     [-58.43593838698166, -34.5557101104948],
     [-58.43608892542685, -34.55582852614328],
     [-58.43627162253643, -34.5560006116558],
     [-58.43650078922273, -34.5561937636455],
     [-58.43673260085386, -34.5563702956993],
     [-58.43690263591031, -34.556482939709966],
     [-58.43710050577111, -34.55659551889728],
     [-58.437388007917654, -34.55670811637752],
     [-58.43774480099815, -34.55681375538665],
     [-58.43789238688786, -34.556857659608575],
     [-58.43821334840934, -34.556953219330104],
     [-58.43855038675946, -34.55708934560335],
     [-58.43894079122644, -34.557245833871654],
     [-58.43923671847039, -34.557381950236866],
     [-58.439560556974556, -34.55755222680566],
     [-58.4398443818595, -34.55775129843389],
     [-58.440094497755695, -34.55795839149253],
     [-58.440315757543814, -34.55816935206328],
     [-58.44046007761159, -34.55834452285732],
     [-58.44056592304086, -34.558519686506564],
     [-58.440652432472596, -34.55874660818446],
     [-58.44073901494833, -34.5590212772532],
     [-58.44077744550912, -34.55919248481278],
     [-58.44078704561611, -34.559264107704635],
     [-58.44073440261034, -34.55940487574022],
     [-58.4407009286625, -34.559482969883064],
     [-58.440661311177, -34.55961641613694],
     [-58.440609514894774, -34.55977260710936],
     [-58.44053029124402, -34.55999421693013],
     [-58.440432851999155, -34.56021075284594],
     [-58.44035977525114, -34.56036186928949],
     [-58.4402470317005, -34.560507907872555],
     [-58.440055188070424, -34.56072449649352],
     [-58.439890773529854, -34.56086806030553],
     [-58.439729425006476, -34.56100401868398],
     [-58.439567992919216, -34.561132441468764],
     [-58.43929391808748, -34.56133887221506],
     [-58.43909604965663, -34.561472357900605],
     [-58.43887068224947, -34.561615838096465],
     [-58.438642341914054, -34.56173417594339],
     [-58.4383257168572, -34.56188270763225],
     [-58.43808818737122, -34.561980901358595],
     [-58.43787509442869, -34.562058958349326],
     [-58.43764974447832, -34.562131941929856],
     [-58.43738183114834, -34.562204916273785],
     [-58.437059096954876, -34.562275343265725],
     [-58.43667865397127, -34.56232244679781],
     [-58.436605017548736, -34.562329966440124],
     [-58.436506693923846, -34.5623394526136],
     [-58.436426673078614, -34.56234675950656],
     [-58.4362930214707, -34.56235813934577],
     [-58.43618082266408, -34.56236621377619],
     [-58.436080627362536, -34.5623719667319],
     [-58.43601950596086, -34.56237455907451],
     [-58.435951829999915, -34.56237665698312],
     [-58.43584635831998, -34.56237783103534],
     [-58.43576438202171, -34.562377249584536],
     [-58.43570198494303, -34.56237603859485],
     [-58.4356190728078, -34.56237376666534],
     [-58.43551760359086, -34.56237022291844],
     [-58.43542694567765, -34.56236583641584],
     [-58.43533731032542, -34.562358280998545],
     [-58.43522052077646, -34.56234762075365],
     [-58.43514535687774, -34.56234013887587],
     [-58.43507036345431, -34.562332023175074],
     [-58.43497187627245, -34.56232080344173],
     [-58.434897989756664, -34.562311983647184],
     [-58.43478750066948, -34.56229829619391],
     [-58.434677011783904, -34.56228411567318],
     [-58.434526175213044, -34.562263939714136],
     [-58.43442930636549, -34.56225039592695],
     [-58.43435959157381, -34.56224030914182],
     [-58.43426023356612, -34.562537263719896],
     [-58.43434644257081, -34.56260784854133],
     [-58.434720895330365, -34.562916462122885],
     [-58.43472087107639, -34.56291647012286],
     [-58.434812198727926, -34.56299184884284],
     [-58.4353506027056, -34.562990277065936],
     [-58.43622236776133, -34.56297991133531],
     [-58.43638061910203, -34.56297742790191],
     [-58.43652669731512, -34.562974941654126],
     [-58.4366806875759, -34.56297396751016],
     [-58.43682676561831, -34.56297198443395],
     [-58.43697223546318, -34.56296849046274],
     [-58.43709701068858, -34.56296599904118],
     [-58.43723639364671, -34.562963510539866],
     [-58.43736117023133, -34.56295648707242],
     [-58.43749264200815, -34.56294946486006],
     [-58.43762350661852, -34.562937407074514],
     [-58.43776289281994, -34.56292384029756],
     [-58.43792662549289, -34.56290927124302],
     [-58.43806053325475, -34.562897213606384],
     [-58.438187745622365, -34.56288565800937],
     [-58.43833443594887, -34.56287058145398],
     [-58.438489647685124, -34.562854499351104],
     [-58.438648511291355, -34.56283841777035],
     [-58.43880372305167, -34.562821831737374],
     [-58.4389522391195, -34.56280675479679],
     [-58.439067887785775, -34.56279167131752],
     [-58.439221274544856, -34.562771056154574],
     [-58.439349096903626, -34.56275345709593],
     [-58.439492136542384, -34.56273233608223],
     [-58.439630306737826, -34.56271171751147],
     [-58.439778215603255, -34.56269009355174],
     [-58.43991151615407, -34.56267048080954],
     [-58.44005942651124, -34.562642814140624],
     [-58.440217684418826, -34.56261313507551],
     [-58.44036742080176, -34.56258446130796],
     [-58.44056552940134, -34.56254686834104],
     [-58.44050248780758, -34.56245350805917],
     [-58.44059723391, -34.562434770638376],
     [-58.44072654795481, -34.56240690610821],
     [-58.4408221515701, -34.56238051430684],
     [-58.44127939355109, -34.562265874817236],
     [-58.44194563284407, -34.56209316958155],
     [-58.44261561493163, -34.561920390896425],
     [-58.442810484590765, -34.56184915378217],
     [-58.44288048649281, -34.56182447776001],
     [-58.4428971497086, -34.56181860388467],
     [-58.44198278359904, -34.561261821364646]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 897.0,
   'VIVIEND': 392.0,
   'HOGARES': 320.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.046723108575046,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.445418369747635, -34.553317474250115],
     [-58.44427829247554, -34.552641095983994],
     [-58.44318461520058, -34.551992250227094],
     [-58.44240499278478, -34.552894536777714],
     [-58.44350633496009, -34.55354944709413],
     [-58.44463875841671, -34.55422280310339],
     [-58.44575928496971, -34.55488903406243],
     [-58.44644336629757, -34.55409749069024],
     [-58.4465391459953, -34.55398236012934],
     [-58.445418369747635, -34.553317474250115]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 624.0,
   'VIVIEND': 298.0,
   'HOGARES': 237.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.065805346530557,
   'partidas': 12.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44463875841671, -34.55422280310339],
     [-58.44350633496009, -34.55354944709413],
     [-58.44282410022829, -34.55435224222163],
     [-58.44268710704058, -34.554512434482234],
     [-58.44187918566184, -34.5554570374806],
     [-58.44299962068132, -34.55612730778261],
     [-58.44411317984162, -34.556793411669645],
     [-58.444930877945914, -34.55584738703738],
     [-58.44575928496971, -34.55488903406243],
     [-58.44463875841671, -34.55422280310339]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_4',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 860.0,
   'VIVIEND': 454.0,
   'HOGARES': 352.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.080564245359063,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44318461520058, -34.551992250227094],
     [-58.44206746661631, -34.55132951710503],
     [-58.44129047690237, -34.552231867505554],
     [-58.4404777103526, -34.55317568607232],
     [-58.440353656685474, -34.55331975099696],
     [-58.439644749742826, -34.554129636325484],
     [-58.440765236137814, -34.554792391912166],
     [-58.44102250967859, -34.55494455372681],
     [-58.44187918566184, -34.5554570374806],
     [-58.44268710704058, -34.554512434482234],
     [-58.44282410022829, -34.55435224222163],
     [-58.44350633496009, -34.55354944709413],
     [-58.44240499278478, -34.552894536777714],
     [-58.44318461520058, -34.551992250227094]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_5',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 707.0,
   'VIVIEND': 271.0,
   'HOGARES': 218.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.441261926936179,
   'partidas': 10.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.43403676834416, -34.55377197030149],
     [-58.43405535239732, -34.55404190181766],
     [-58.43456688561088, -34.5541130081684],
     [-58.43475524240704, -34.55413917873536],
     [-58.4349135939657, -34.55419794543835],
     [-58.435017367654225, -34.55425226899799],
     [-58.43574702762601, -34.55468856818097],
     [-58.43686391405883, -34.55535628839037],
     [-58.437692661886175, -34.554405173409144],
     [-58.4377877712384, -34.55429610604984],
     [-58.43850989880191, -34.553458346234834],
     [-58.439644749742826, -34.554129636325484],
     [-58.440353656685474, -34.55331975099696],
     [-58.4404777103526, -34.55317568607232],
     [-58.44129047690237, -34.552231867505554],
     [-58.44206746661631, -34.55132951710503],
     [-58.442861211585935, -34.5504078681528],
     [-58.44367877704187, -34.54945832967702],
     [-58.442740368852725, -34.548902040941186],
     [-58.442539957722204, -34.548783273014486],
     [-58.44159356536142, -34.548222326097616],
     [-58.441168240859184, -34.54830443674826],
     [-58.44076844475066, -34.548403100164386],
     [-58.440562798692746, -34.5484622192869],
     [-58.440533517632815, -34.54847179165048],
     [-58.44046281637831, -34.548371001927414],
     [-58.44006853865312, -34.547887961079034],
     [-58.44000047057331, -34.54781048194177],
     [-58.43958216911694, -34.54804350720687],
     [-58.437176606997035, -34.54933622550152],
     [-58.436747281529875, -34.54956959196412],
     [-58.43583213877979, -34.5500586593915],
     [-58.43543799447731, -34.55027708410823],
     [-58.431734155948895, -34.55230601666833],
     [-58.4320428935117, -34.55247750668847],
     [-58.433614207272264, -34.55338657988332],
     [-58.43403676834416, -34.55377197030149]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_6',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 570.0,
   'VIVIEND': 329.0,
   'HOGARES': 240.0,
   'HOGARES_': 7.0,
   'AREA_KM': 0.049635381530643,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.439644749742826, -34.554129636325484],
     [-58.43850989880191, -34.553458346234834],
     [-58.4377877712384, -34.55429610604984],
     [-58.437692661886175, -34.554405173409144],
     [-58.43686391405883, -34.55535628839037],
     [-58.43798405230596, -34.5560259708437],
     [-58.43870840162316, -34.55520328128369],
     [-58.43881287712179, -34.55508196120268],
     [-58.439024616262564, -34.55520989244381],
     [-58.43992800416363, -34.55575570946569],
     [-58.44062287460308, -34.55495715844023],
     [-58.440765236137814, -34.554792391912166],
     [-58.439644749742826, -34.554129636325484]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_7',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 896.0,
   'VIVIEND': 419.0,
   'HOGARES': 341.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.049479872335792,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.439108038287834, -34.556697897261664],
     [-58.43944429291409, -34.55689895183876],
     [-58.43967050612447, -34.55703420877339],
     [-58.43988872016879, -34.55716411156887],
     [-58.44023995765787, -34.557373335920396],
     [-58.44104595773114, -34.556431067725846],
     [-58.44187918566184, -34.5554570374806],
     [-58.44102250967859, -34.55494455372681],
     [-58.440765236137814, -34.554792391912166],
     [-58.44062287460308, -34.55495715844023],
     [-58.43992800416363, -34.55575570946569],
     [-58.439024616262564, -34.55520989244381],
     [-58.43881287712179, -34.55508196120268],
     [-58.43870840162316, -34.55520328128369],
     [-58.43798405230596, -34.5560259708437],
     [-58.439108038287834, -34.556697897261664]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_8',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 629.0,
   'VIVIEND': 373.0,
   'HOGARES': 282.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.066393775699019,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44523296983349, -34.557463168268725],
     [-58.446049982642066, -34.556508192299546],
     [-58.444930877945914, -34.55584738703738],
     [-58.44411317984162, -34.556793411669645],
     [-58.44299962068132, -34.55612730778261],
     [-58.44187918566184, -34.5554570374806],
     [-58.44104595773114, -34.556431067725846],
     [-58.44120544802494, -34.556527365507286],
     [-58.44192971413875, -34.55695686593622],
     [-58.442169719365076, -34.55709916298392],
     [-58.4432801372411, -34.55775717507759],
     [-58.44440904170081, -34.55842616591411],
     [-58.44523296983349, -34.557463168268725]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_12_9',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 945.0,
   'VIVIEND': 514.0,
   'HOGARES': 384.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.048843442961514,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4432801372411, -34.55775717507759],
     [-58.442169719365076, -34.55709916298392],
     [-58.44192971413875, -34.55695686593622],
     [-58.44120544802494, -34.556527365507286],
     [-58.44104595773114, -34.556431067725846],
     [-58.44023995765787, -34.557373335920396],
     [-58.44136491428446, -34.5580529178114],
     [-58.44246589276566, -34.5586991043321],
     [-58.443390705570955, -34.55924989908043],
     [-58.44359888820557, -34.55937303291222],
     [-58.44440904170081, -34.55842616591411],
     [-58.4432801372411, -34.55775717507759]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 1028.0,
   'VIVIEND': 466.0,
   'HOGARES': 376.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.06285553340131,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.448799276518365, -34.559594796592386],
     [-58.44844843372562, -34.559386442070355],
     [-58.448352765171954, -34.55932924660914],
     [-58.44843066068614, -34.559282846347884],
     [-58.448282221591576, -34.559193460900495],
     [-58.448204325980605, -34.559240424459404],
     [-58.448086759291456, -34.559308369566686],
     [-58.44718819466538, -34.55979890242238],
     [-58.44694684478748, -34.559929789650255],
     [-58.44712115883376, -34.560032842261776],
     [-58.44759286431871, -34.56031178038925],
     [-58.448744649253776, -34.560992705763624],
     [-58.44872837911157, -34.561060381310284],
     [-58.448751270020914, -34.56110630033713],
     [-58.44878395309927, -34.56113553000215],
     [-58.44887417900232, -34.561174695964],
     [-58.44888720561935, -34.56115955629152],
     [-58.448934288711094, -34.56110484220809],
     [-58.44984333950128, -34.561642346390975],
     [-58.45066212618583, -34.56070079137351],
     [-58.45129955292929, -34.559967809670546],
     [-58.45146318628782, -34.55977739846695],
     [-58.45136530216563, -34.55971907838254],
     [-58.45055372031747, -34.55923596239828],
     [-58.4501394639602, -34.558989366184825],
     [-58.44966105991027, -34.5590819939657],
     [-58.448799276518365, -34.559594796592386]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_10',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 919.0,
   'VIVIEND': 456.0,
   'HOGARES': 358.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.013072412008762,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.449025130165666, -34.56258438880086],
     [-58.448121266700326, -34.56204899194568],
     [-58.447991423271766, -34.562199824425825],
     [-58.44731222715545, -34.56299377043679],
     [-58.44821515983813, -34.563525792741025],
     [-58.44829485510126, -34.563432490486484],
     [-58.449025130165666, -34.56258438880086]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_11',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 603.0,
   'VIVIEND': 278.0,
   'HOGARES': 215.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.025839959363759,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44731222715545, -34.56299377043679],
     [-58.446403773399375, -34.562458501171875],
     [-58.44560663090107, -34.56339045272804],
     [-58.446515345157245, -34.56392523491056],
     [-58.447419559751616, -34.56445726318824],
     [-58.44821515983813, -34.563525792741025],
     [-58.44731222715545, -34.56299377043679]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_12',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 997.0,
   'VIVIEND': 397.0,
   'HOGARES': 327.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.027823975283677,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.443588111232636, -34.56220322866275],
     [-58.4438788627584, -34.56237553075663],
     [-58.4440212601982, -34.5624587937056],
     [-58.44433014362062, -34.56263933708952],
     [-58.44560663090107, -34.56339045272804],
     [-58.446403773399375, -34.562458501171875],
     [-58.444928975912454, -34.56158947538318],
     [-58.44492927021247, -34.56158928806688],
     [-58.44457492705608, -34.56152475711113],
     [-58.44372440532227, -34.56188745604376],
     [-58.443567622732665, -34.561935670669826],
     [-58.44356190033933, -34.561937430446164],
     [-58.443588111232636, -34.56220322866275]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_13',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 1219.0,
   'VIVIEND': 685.0,
   'HOGARES': 556.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.042855019931674,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44463589540952, -34.559986301718126],
     [-58.44359888820557, -34.55937303291222],
     [-58.4427839480577, -34.5603255275184],
     [-58.44381917422421, -34.56093549295058],
     [-58.44331407992622, -34.56151591831383],
     [-58.443178237989585, -34.56143885288226],
     [-58.44293888247949, -34.56172882013382],
     [-58.4428971497086, -34.56181860388467],
     [-58.44288048649281, -34.56182447776001],
     [-58.443567622732665, -34.561935670669826],
     [-58.44372440532227, -34.56188745604376],
     [-58.44457492705608, -34.56152475711113],
     [-58.44492927021247, -34.56158928806688],
     [-58.446093467787875, -34.56084828653584],
     [-58.446092962383936, -34.56084798863603],
     [-58.44593703998094, -34.56075608322604],
     [-58.44569240896038, -34.56061111390222],
     [-58.445649085895546, -34.56058547354289],
     [-58.44564770202932, -34.560584655175695],
     [-58.44463589540952, -34.559986301718126]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_14',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 677.0,
   'VIVIEND': 530.0,
   'HOGARES': 348.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.014177944425762,
   'partidas': None},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44381917422421, -34.56093549295058],
     [-58.4427839480577, -34.5603255275184],
     [-58.44198278359904, -34.561261821364646],
     [-58.4428971497086, -34.56181860388467],
     [-58.44293888247949, -34.56172882013382],
     [-58.443178237989585, -34.56143885288226],
     [-58.44331407992622, -34.56151591831383],
     [-58.44381917422421, -34.56093549295058]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 314.0,
   'VIVIEND': 200.0,
   'HOGARES': 155.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.022443426837488,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44943722332896, -34.558530903298056],
     [-58.44830177581553, -34.55785090063835],
     [-58.44788987387256, -34.558324382176885],
     [-58.44747268875491, -34.55880286173099],
     [-58.448204325980605, -34.559240424459404],
     [-58.448282221591576, -34.559193460900495],
     [-58.44843066068614, -34.559282846347884],
     [-58.448352765171954, -34.55932924660914],
     [-58.44844843372562, -34.559386442070355],
     [-58.448799276518365, -34.559594796592386],
     [-58.44966105991027, -34.5590819939657],
     [-58.4501394639602, -34.558989366184825],
     [-58.44998625832066, -34.558889277871465],
     [-58.44990522971343, -34.55883631058371],
     [-58.44955124145413, -34.558604859813215],
     [-58.449551292934885, -34.55860483150075],
     [-58.4494477153054, -34.558537239154745],
     [-58.44943722332896, -34.558530903298056]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 737.0,
   'VIVIEND': 434.0,
   'HOGARES': 322.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.033088143920153,
   'partidas': 13.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44830177581553, -34.55785090063835],
     [-58.44709480217855, -34.55712806142632],
     [-58.44674899587767, -34.55692089978938],
     [-58.446049982642066, -34.556508192299546],
     [-58.44523296983349, -34.557463168268725],
     [-58.44627192152242, -34.558084663252664],
     [-58.44747268875491, -34.55880286173099],
     [-58.44788987387256, -34.558324382176885],
     [-58.44830177581553, -34.55785090063835]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_4',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 842.0,
   'VIVIEND': 513.0,
   'HOGARES': 394.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.025231730893962,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.448204325980605, -34.559240424459404],
     [-58.44747268875491, -34.55880286173099],
     [-58.44627192152242, -34.558084663252664],
     [-58.44544825577444, -34.55904196350786],
     [-58.44664545618194, -34.55975136651142],
     [-58.44679423523789, -34.55983955677762],
     [-58.44694684478748, -34.559929789650255],
     [-58.44718819466538, -34.55979890242238],
     [-58.448086759291456, -34.559308369566686],
     [-58.448204325980605, -34.559240424459404]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_5',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 827.0,
   'VIVIEND': 512.0,
   'HOGARES': 411.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.015345873064697,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44627192152242, -34.558084663252664],
     [-58.44523296983349, -34.557463168268725],
     [-58.44440904170081, -34.55842616591411],
     [-58.44544825577444, -34.55904196350786],
     [-58.44627192152242, -34.558084663252664]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_6',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 261.0,
   'VIVIEND': 188.0,
   'HOGARES': 132.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.015069518857539,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44544825577444, -34.55904196350786],
     [-58.44440904170081, -34.55842616591411],
     [-58.44359888820557, -34.55937303291222],
     [-58.44463589540952, -34.559986301718126],
     [-58.44544825577444, -34.55904196350786]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_7',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 629.0,
   'VIVIEND': 408.0,
   'HOGARES': 305.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.018575252882063,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44694684478748, -34.559929789650255],
     [-58.44679423523789, -34.55983955677762],
     [-58.44664545618194, -34.55975136651142],
     [-58.44544825577444, -34.55904196350786],
     [-58.44463589540952, -34.559986301718126],
     [-58.44564770202932, -34.560584655175695],
     [-58.445649085895546, -34.56058547354289],
     [-58.44569240896038, -34.56061111390222],
     [-58.44608998160283, -34.56040031934337],
     [-58.446307411158465, -34.560285628118905],
     [-58.446823658167595, -34.5599965356007],
     [-58.44694684478748, -34.559929789650255]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_8',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 649.0,
   'VIVIEND': 360.0,
   'HOGARES': 249.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.063758378128409,
   'partidas': 14.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.44759286431871, -34.56031178038925],
     [-58.44712115883376, -34.560032842261776],
     [-58.44694684478748, -34.559929789650255],
     [-58.446823658167595, -34.5599965356007],
     [-58.446307411158465, -34.560285628118905],
     [-58.44608998160283, -34.56040031934337],
     [-58.44569240896038, -34.56061111390222],
     [-58.44593703998094, -34.56075608322604],
     [-58.446092962383936, -34.56084798863603],
     [-58.446093467787875, -34.56084828653584],
     [-58.44492927021247, -34.56158928806688],
     [-58.444928975912454, -34.56158947538318],
     [-58.446403773399375, -34.562458501171875],
     [-58.447109709011116, -34.56163329533662],
     [-58.447214947387465, -34.56150710903931],
     [-58.448121266700326, -34.56204899194568],
     [-58.449025130165666, -34.56258438880086],
     [-58.44912142625876, -34.56247256635828],
     [-58.44984333950128, -34.561642346390975],
     [-58.448934288711094, -34.56110484220809],
     [-58.44888720561935, -34.56115955629152],
     [-58.44887417900232, -34.561174695964],
     [-58.44878395309927, -34.56113553000215],
     [-58.448751270020914, -34.56110630033713],
     [-58.44872837911157, -34.561060381310284],
     [-58.448744649253776, -34.560992705763624],
     [-58.44759286431871, -34.56031178038925]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_13_9',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 780.0,
   'VIVIEND': 342.0,
   'HOGARES': 287.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.013185172792718,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.448121266700326, -34.56204899194568],
     [-58.447214947387465, -34.56150710903931],
     [-58.447109709011116, -34.56163329533662],
     [-58.446403773399375, -34.562458501171875],
     [-58.44731222715545, -34.56299377043679],
     [-58.447991423271766, -34.562199824425825],
     [-58.448121266700326, -34.56204899194568]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 776.0,
   'VIVIEND': 441.0,
   'HOGARES': 341.0,
   'HOGARES_': 18.0,
   'AREA_KM': 0.013579208845675,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45498273050758, -34.56039923348182],
     [-58.45407783147318, -34.559859373334106],
     [-58.45323746619924, -34.56083348558653],
     [-58.45414262584143, -34.56137222511211],
     [-58.45480173686179, -34.560607888064155],
     [-58.45498273050758, -34.56039923348182]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_10',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 727.0,
   'VIVIEND': 369.0,
   'HOGARES': 298.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.012917216523588,
   'partidas': 6.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45244118258586, -34.56175703122466],
     [-58.45155092525718, -34.56122849195193],
     [-58.45073725085911, -34.56217082801331],
     [-58.45162989672199, -34.56269859869145],
     [-58.45244118258586, -34.56175703122466]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_11',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 806.0,
   'VIVIEND': 347.0,
   'HOGARES': 284.0,
   'HOGARES_': 4.0,
   'AREA_KM': 0.012935951617062,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45155092525718, -34.56122849195193],
     [-58.45066212618583, -34.56070079137351],
     [-58.44984333950128, -34.561642346390975],
     [-58.45073725085911, -34.56217082801331],
     [-58.45155092525718, -34.56122849195193]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 381.0,
   'VIVIEND': 212.0,
   'HOGARES': 162.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.013343182525337,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45407783147318, -34.559859373334106],
     [-58.45392640608582, -34.5597690790346],
     [-58.45319056346318, -34.55932950800927],
     [-58.452348745964315, -34.56030445920314],
     [-58.45323746619924, -34.56083348558653],
     [-58.45407783147318, -34.559859373334106]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 660.0,
   'VIVIEND': 534.0,
   'HOGARES': 367.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.013334445909891,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.453135662843984, -34.559296756578526],
     [-58.452303562073624, -34.55879963621358],
     [-58.451551558195234, -34.559674658015986],
     [-58.45146318628782, -34.55977739846695],
     [-58.452348745964315, -34.56030445920314],
     [-58.45319056346318, -34.55932950800927],
     [-58.453135662843984, -34.559296756578526]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_4',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 734.0,
   'VIVIEND': 360.0,
   'HOGARES': 291.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.012628040574193,
   'partidas': 9.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.452348745964315, -34.56030445920314],
     [-58.45146318628782, -34.55977739846695],
     [-58.45129955292929, -34.559967809670546],
     [-58.45066212618583, -34.56070079137351],
     [-58.45155092525718, -34.56122849195193],
     [-58.452348745964315, -34.56030445920314]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_5',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 531.0,
   'VIVIEND': 291.0,
   'HOGARES': 228.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.01265503466174,
   'partidas': 11.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45323746619924, -34.56083348558653],
     [-58.452348745964315, -34.56030445920314],
     [-58.45155092525718, -34.56122849195193],
     [-58.45244118258586, -34.56175703122466],
     [-58.452819617474404, -34.56131782835151],
     [-58.45323746619924, -34.56083348558653]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_6',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 846.0,
   'VIVIEND': 439.0,
   'HOGARES': 359.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.069104904138088,
   'partidas': 21.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4546722804314, -34.563081590665995],
     [-58.45507729215794, -34.563322043877925],
     [-58.455273244554924, -34.56343712863228],
     [-58.45609420185887, -34.5624838472178],
     [-58.45652242373342, -34.561986606283135],
     [-58.45690773432346, -34.56153351758502],
     [-58.45590628313596, -34.56094408801459],
     [-58.45513841416065, -34.560492061987894],
     [-58.45498273050758, -34.56039923348182],
     [-58.45480173686179, -34.560607888064155],
     [-58.45414262584143, -34.56137222511211],
     [-58.45323746619924, -34.56083348558653],
     [-58.452819617474404, -34.56131782835151],
     [-58.45244118258586, -34.56175703122466],
     [-58.453347028206906, -34.56229486111404],
     [-58.454268888342604, -34.56284212214781],
     [-58.4546722804314, -34.563081590665995]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_7',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 384.0,
   'VIVIEND': 224.0,
   'HOGARES': 165.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.014489643797964,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.4546722804314, -34.563081590665995],
     [-58.454268888342604, -34.56284212214781],
     [-58.45345948572994, -34.56378018054017],
     [-58.454253082774635, -34.564249331675256],
     [-58.45446537977303, -34.564375052848014],
     [-58.455273244554924, -34.56343712863228],
     [-58.45507729215794, -34.563322043877925],
     [-58.4546722804314, -34.563081590665995]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_8',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 604.0,
   'VIVIEND': 409.0,
   'HOGARES': 254.0,
   'HOGARES_': 1.0,
   'AREA_KM': 0.013321732818067,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.454268888342604, -34.56284212214781],
     [-58.453347028206906, -34.56229486111404],
     [-58.45253659881881, -34.56323460356708],
     [-58.45345948572994, -34.56378018054017],
     [-58.454268888342604, -34.56284212214781]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_14_9',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 534.0,
   'VIVIEND': 328.0,
   'HOGARES': 238.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.013110927792549,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.453347028206906, -34.56229486111404],
     [-58.45244118258586, -34.56175703122466],
     [-58.45162989672199, -34.56269859869145],
     [-58.45253659881881, -34.56323460356708],
     [-58.453347028206906, -34.56229486111404]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_1',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 745.0,
   'VIVIEND': 470.0,
   'HOGARES': 350.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.012633577133358,
   'partidas': 4.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45957334089666, -34.56171953414313],
     [-58.45868184714012, -34.561190131321624],
     [-58.45789055765701, -34.562112726681846],
     [-58.45878154550707, -34.56264164221765],
     [-58.45889102389458, -34.56251431922795],
     [-58.45957334089666, -34.56171953414313]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_10',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 632.0,
   'VIVIEND': 451.0,
   'HOGARES': 331.0,
   'HOGARES_': 3.0,
   'AREA_KM': 0.012940704773605,
   'partidas': 5.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45714988634713, -34.56453978507052],
     [-58.45625531296383, -34.56401416752564],
     [-58.45615434218427, -34.564131347533966],
     [-58.45544311189804, -34.56495392891505],
     [-58.4563382006863, -34.565483777790824],
     [-58.45714988634713, -34.56453978507052]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_11',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 735.0,
   'VIVIEND': 522.0,
   'HOGARES': 369.0,
   'HOGARES_': 19.0,
   'AREA_KM': 0.012899255982816,
   'partidas': 8.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45804081056622, -34.56506321273516],
     [-58.45714988634713, -34.56453978507052],
     [-58.4563382006863, -34.565483777790824],
     [-58.45722606506737, -34.56600939430125],
     [-58.45804081056622, -34.56506321273516]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_12',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 654.0,
   'VIVIEND': 410.0,
   'HOGARES': 328.0,
   'HOGARES_': 14.0,
   'AREA_KM': 0.012979722566664,
   'partidas': 7.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.458934640273654, -34.56558832411611],
     [-58.45804081056622, -34.56506321273516],
     [-58.45722606506737, -34.56600939430125],
     [-58.45811709034131, -34.56653690587261],
     [-58.458934640273654, -34.56558832411611]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_2',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 712.0,
   'VIVIEND': 498.0,
   'HOGARES': 360.0,
   'HOGARES_': 0.0,
   'AREA_KM': 0.028241031262398,
   'partidas': 3.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45690773432346, -34.56153351758502],
     [-58.45652242373342, -34.561986606283135],
     [-58.45609420185887, -34.5624838472178],
     [-58.457075072826086, -34.56306285141187],
     [-58.45719655812929, -34.562921938686806],
     [-58.45789055765701, -34.562112726681846],
     [-58.45868184714012, -34.561190131321624],
     [-58.45769715676892, -34.56060536493891],
     [-58.45690773432346, -34.56153351758502]]]}},
 {'type': 'Feature',
  'properties': {'RADIO_I': '13_15_3',
   'BARRIO': 'BELGRANO',
   'COMUNA': '13',
   'POBLACI': 746.0,
   'VIVIEND': 425.0,
   'HOGARES': 349.0,
   'HOGARES_': 2.0,
   'AREA_KM': 0.0259535140571,
   'partidas': 2.0},
  'geometry': {'type': 'Polygon',
   'coordinates': [[[-58.45967399194682, -34.56316639623008],
     [-58.45894804835821, -34.562740452211855],
     [-58.45878154550707, -34.56264164221765],
     [-58.45789055765701, -34.562112726681846],
     [-58.45719655812929, -34.562921938686806],
     [-58.457075072826086, -34.56306285141187],
     [-58.457967002181405, -34.56358937844025],
     [-58.458227483767836, -34.56374312365957],
     [-58.45885621867552, -34.5641161100932],
     [-58.45967399194682, -34.56316639623008]]]}},
 ...]

Este primer resultado nos permite ver dos cosas. Primero, una división fuerte entre dos grupos. Si bien nuestro último quintil tiene un amplio rango entre la base y el techo del intervalo, nos sirve para diferenciar dos áreas de la Ciudad. aquellas con nula o casi nula actividad y aquellas donde los radios tienen un número de certificados de conservación superior al techo del resto.

En otras palabras, los radios censales con más de diez fachadas registradas se concentran desde el centro hacia el oeste, siguiendo la traza de la Avenida Rivadavia hasta poco más de Primera Junta. Y del centro hacia el Norte. Aprovechemos para agregar alguna traza que nos permita ver este efecto con mayor claridad.

In [69]:
# Instanciamos el callejero de la Ciudad, que también bajamos de Buenos Aires Data.
callejero = gpd.read_file('../carto/callejero.shp')
In [70]:
# Filtramos las avenidas
avenidas = callejero.loc[callejero['tipo_c']=='AVENIDA']
In [71]:
# Nos quedamos con algunas trazas que vayan del centro al oeste y del centro al norte
ppales = avenidas.loc[(avenidas['nom_mapa']=='AV. DE MAYO')|(avenidas['nom_mapa']=='AV. RIVADAVIA')|
                     (avenidas['nom_mapa']=='AV. CORRIENTES')|(avenidas['nom_mapa']=='AV. SANTA FE')|
                     (avenidas['nom_mapa']=='AV.CABILDO')]
In [72]:
# Cortamos rivadavia y eliminamos algunas secciones con altura cero
pp_clean = ppales.loc[(ppales['nom_mapa']=='AV. DE MAYO')|
                      ((ppales['nom_mapa']=='AV. RIVADAVIA')&
                      (ppales['alt_izqfin']<8000)&(ppales['alt_derfin']<8000)&
                      # tramos de rivadavia con altura = 0
                      (ppales['id']!=19894)&(ppales['id']!=19844)&(ppales['id']!=19104)&(ppales['id']!=31505))|
                      (ppales['nom_mapa']=='AV. CORRIENTES')|(ppales['nom_mapa']=='AV. SANTA FE')|
                      (ppales['nom_mapa']=='AV.CABILDO')]
In [73]:
# Volvemos a plotear nuestra coropleta. 
gdf = radios.copy()
centroide =  gdf.geometry.centroid
coordenadas = [centroide.y.mean(), centroide.x.mean()]
layer = folium.Map(location=coordenadas, 
                   zoom_start=11, 
                   height = 500,
                   control_scale=True)

tiles = ['stamenwatercolor', 'cartodbpositron', 'openstreetmap', 'stamenterrain']
for tile in tiles:
    folium.TileLayer(tile).add_to(layer)


fachadas = folium.Choropleth(name='Radios censales',
                             geo_data=gdf,
                             data=gdf[[c for c in gdf.columns if c!='geometry']],
                             columns=['RADIO_I','partidas'],
                             key_on='properties.RADIO_I',
                             fill_color='Reds_r', 
                             bins = qcut,
                             fill_opacity=0.6, 
                             line_opacity=0.2,
                             highlight=True,
                             legend_name='Cantidad de partidas por radio censal (CNPHV-2010)',
                             smooth_factor=1).add_to(layer)

pol_hover = folium.features.GeoJsonTooltip(fields=['BARRIO','RADIO_I','partidas'],
                                           aliases=['Barrio:','Radio_id:','Partidas:'])

folium.GeoJson(gdf,
               style_function=lambda x: {"weight":0.35, 
                                         'color':'white', 
                                         'fillOpacity':0.0},
               smooth_factor=2.0,
               tooltip=pol_hover).add_to(fachadas)


# ...pero ahora agregando un layer de calles.
folium.GeoJson(pp_clean,
               name='Avenidas',
               style_function=lambda x: {'weight':2,'color':'#355C7D'},
               highlight_function=lambda x: {'weight':5,'color':'yellow'},
               tooltip=folium.features.GeoJsonTooltip(fields=['nom_mapa','alt_izqfin','alt_derfin'],
                                                      aliases=['Calle:','Altura(izq):','Altura(der):']),
               smooth_factor=5.0,
              ).add_to(layer)

# También agregamos un selector de layers
folium.LayerControl().add_to(layer);
In [74]:
layer
Out[74]:

Ahora sí, nuestra choropleta está lista. Qué podemos ver? Inicialmente que la concentración más alta queda denotada por el mismo modelo territorial de la ciudad. Del centro al oeste y del centro al norte (lo que se puede ver a través de las trazas de las avenidas que seleccionamos). Como dijimos anteriormente, si bien el rango es alto (de 10 a 75), nos permite ver una clara diferencia con el resto de la ciudad. Allí es donde se concentran las fachadas que han sido patrimoniadas. Un segundo paso podría ser filtrar este universo y evaluar dónde es que vuelven a concentrarse. Pero ese análisis se lo dejamos a ustedes!